/* Auxiliary Pages Styles */

.header {
    position: relative;
}

.page-nav {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-link {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid #1e3a8a;
    border-radius: 6px;
}

.nav-link:hover {
    background: #1e3a8a;
    color: white;
}

.page-main {
    min-height: 60vh;
}

.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    text-align: center;
}

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

.lead {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
}

.content-section {
    padding: 60px 0;
    background: white;
}

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

.content-block h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block p {
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.placeholder-text {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
}

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

.about-content-with-svg {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.about-text h2 {
    margin-bottom: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-nav {
        position: static;
        transform: none;
        margin-top: 20px;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 0 20px;
    }
    
    .about-content-with-image,
    .about-content-with-svg {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        height: 200px;
    }
}