/* production page styles */
/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%), url('<%=siteurl%>/images/secili.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(204, 0, 0, 0.1) 0%, transparent 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb-nav {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb li:not(:last-child)::after {
    content: '▸';
    color: var(--primary-color);
    font-weight: bold;
}

.breadcrumb .active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Content Section */
.page-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.content-box {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    line-height: 1.9;
    font-size: 17px;
    color: #555;
}

.content-box p {
    margin-bottom: 20px;
}

.content-box strong {
    color: var(--primary-color);
    font-weight: 700;
}

.content-box h2, .content-box h3, .content-box h4 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 800;
}

.content-box h2 {
    font-size: 32px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.content-box h3 {
    font-size: 26px;
}

.content-box h4 {
    font-size: 22px;
}

.content-box ul, .content-box ol {
    margin: 20px 0;
    padding-left: 30px;
}

.content-box li {
    margin-bottom: 10px;
}

.content-box img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .content-box {
        padding: 30px 20px;
    }
    
    .page-content {
        padding: 50px 0;
    }
}
