/* Additional styles for auxiliary pages */

.page-header {
    background: linear-gradient(135deg, #C41E3A 0%, #8B1538 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.page-section {
    padding: 60px 0;
}

.page-section.alt-bg {
    background-color: #F8F8F8;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #C41E3A;
    margin-bottom: 30px;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #D4AF37;
    border-radius: 2px;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.content-placeholder {
    background-color: #F8F8F8;
    padding: 40px;
    border-radius: 10px;
    border: 2px dashed #DDD;
    text-align: center;
}

.content-placeholder p {
    color: #888;
    font-style: italic;
    margin-bottom: 15px;
}

.content-placeholder p:last-child {
    margin-bottom: 0;
}

/* About Us specific styles */
.section-content.centered {
    text-align: center;
}

.content-with-illustration {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.content-with-illustration:nth-child(even) {
    grid-template-columns: 200px 1fr;
}

.content-with-illustration:nth-child(even) .illustration-container {
    order: -1;
}

.illustration-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-content {
    text-align: left;
}

.section-content.centered .text-content p {
    text-align: left;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 24px;
    }
    
    .page-section {
        padding: 40px 0;
    }
    
    .content-placeholder {
        padding: 30px 20px;
    }
    
    .content-with-illustration {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-illustration:nth-child(even) {
        grid-template-columns: 1fr;
    }
}