/* Additional styles for auxiliary pages */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1F3A5F 0%, #2c4f7c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* Page Sections */
.page-section {
    padding: 80px 0;
}

.page-section.bg-light {
    background-color: #f8f9fa;
}

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

.content-block h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #1F3A5F;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

.content-block ul {
    margin-bottom: 32px;
}

.content-block.center {
    text-align: center;
}

/* Last Updated */
.last-updated {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 48px;
    text-align: left;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F3A5F;
    border-bottom: 2px solid #6BAE75;
    padding-bottom: 8px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px 0;
    color: #1F3A5F;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content.reverse .about-image {
    order: -1;
}

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

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1F3A5F;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
    text-align: center;
}

.value-item {
    background-color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(31, 58, 95, 0.1);
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F3A5F;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Features Grid for About page */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    background-color: white;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(31, 58, 95, 0.1);
    text-align: center;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F3A5F;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* Values List */
.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 16px;
    color: #6BAE75;
    font-weight: bold;
    font-size: 18px;
}

.values-list strong {
    color: #1F3A5F;
    font-weight: 600;
}

/* Header Logo Links */
.header .logo-brand a {
    text-decoration: none;
    display: inline-block;
}

.footer .footer-logo a {
    text-decoration: none;
    display: inline-block;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .about-content.reverse .about-image {
        order: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .page-section {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
}