/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.header-content .logo-section a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.header-content .logo {
    width: 40px;
    height: 40px;
}

.header-content .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
}

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

.page-nav a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-nav a:hover,
.page-nav a.active {
    color: #1e3a8a;
}

.btn-contact {
    background-color: #1e3a8a;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #1e40af;
}

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

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

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt-bg {
    background-color: #f8fafc;
}

/* About Page Specific Styles */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

.content-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Leadership Content */
.leadership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.leadership-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.leadership-text {
    font-size: 1.125rem;
    line-height: 1.7;
}

.leadership-highlights {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item h4 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.highlight-item p {
    color: #64748b;
    margin: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

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

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-choose-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.why-choose-item h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #1f2937;
    font-weight: 600;
}

.contact-details {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer Updates */
.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid,
    .leadership-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-main-image,
    .leadership-main-image {
        height: 250px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .page-nav {
        gap: 1rem;
    }
    
    .approach-grid,
    .values-list,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-main-image,
    .leadership-main-image {
        height: 200px;
    }
    
    .page-hero {
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .page-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .legal-content {
        font-size: 0.9rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}