/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background: var(--deep-navy);
    color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #374151;
}

.page-header .brand-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.page-header .logo {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.page-header .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.breadcrumb a {
    color: var(--emerald);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, #1E293B 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.25rem;
    color: #E2E8F0;
    max-width: 800px;
    margin: 0 auto 10px;
}

.last-updated {
    font-size: 1rem;
    color: #9CA3AF;
    font-style: italic;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--deep-navy);
}

.content-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--deep-navy);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-navy);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.expertise-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.expertise-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-navy);
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Commitment Section */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--deep-navy);
}

.commitment-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.commitment-list {
    text-align: left;
    max-width: 600px;
    margin: 30px auto;
    list-style: none;
    padding: 0;
}

.commitment-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--deep-navy);
    border-bottom: 2px solid var(--emerald);
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--deep-navy);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: var(--text-dark);
}

.legal-section a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-info {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

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

.contact-info strong {
    color: var(--deep-navy);
}

/* Footer Updates */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #E2E8F0;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--emerald);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.25rem;
    }
    
    .page-hero p {
        font-size: 1.125rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-text h2 {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-content h2 {
        font-size: 2.25rem;
    }
    
    .legal-section h2 {
        font-size: 1.75rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .page-header .brand-name {
        font-size: 1.25rem;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 1.875rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .commitment-content h2 {
        font-size: 1.875rem;
    }
}