/* Page-specific styles for auxiliary pages */

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

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.about-features {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

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

.feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.commitment-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.commitment-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.commitment-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.15);
}

.values-section {
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 48px;
    line-height: 1.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.value-icon {
    background: #ffffff;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile responsive for About Us */
@media (max-width: 768px) {
    .about-hero-content,
    .about-commitment {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-text h2,
    .feature-content h2,
    .commitment-content h2,
    .values-section h2 {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content */
.page-content {
    padding: 80px 0;
}

.page-content p {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Blocks */
.content-block {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.content-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-block h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 16px;
}

.content-block p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.content-block ul {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-block li {
    margin-bottom: 8px;
}

.last-updated {
    font-style: italic;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.back-link {
    color: #84cc16;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    color: #65a30d;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
}