/* Pages CSS - Styles for auxiliary pages */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #1e40af;
}

/* Page Title Section */
.page-title {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-title h1 {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-title p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

/* Page Sections */
.page-section {
    padding: 4rem 0;
}

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

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

.section-content h2 {
    color: #1e3a8a;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-content h3 {
    color: #1e3a8a;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.section-content h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1.5rem;
}

.section-content ul {
    margin: 1rem 0 2rem 1.5rem;
}

.section-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 0.5rem;
}

.section-content a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
}

.section-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

/* Content Grid for About Page */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.content-item img {
    transition: transform 0.2s ease;
}

.content-item img:hover {
    transform: scale(1.02);
}

.content-icon {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}

.content-item h3 {
    color: #1e3a8a;
    margin: 1rem 0 0.5rem;
}

.content-item p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Feature List for About Page */
.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    height: 40px;
    width: 40px;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.feature-content h4 {
    color: #1e3a8a;
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #64748b;
    margin: 0;
    font-size: 1rem;
}

/* Contact Info Styling */
.contact-info {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1e3a8a;
    margin: 2rem 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

.contact-info strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Footer Updates for Pages */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links .footer-link {
    margin-bottom: 0.5rem;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-content {
        padding: 0 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        padding: 2rem 0;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .page-section {
        padding: 2rem 0;
    }
    
    .section-content h2 {
        font-size: 1.8rem;
    }
    
    .content-item {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}