/* Auxiliary Pages Styles */

.page-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 200px);
    padding: 60px 0;
}

.page-hero {
    text-align: center;
    margin-bottom: 60px;
}

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

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3A3A3A;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

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

/* Navigation Link */
.nav-link {
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 24px;
    background: rgba(212, 239, 223, 0.3);
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background: rgba(212, 239, 223, 0.5);
}

/* Legal Pages Placeholder */
.legal-placeholder {
    background: #F8F9FA;
    padding: 60px;
    border-radius: 24px;
    border: 2px dashed #D4EFDF;
    text-align: center;
}

.legal-placeholder p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin: 0;
    max-width: none;
}

/* About Us Page Enhancements */
.about-hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.content-with-visual.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-visual.reverse .content-visual {
    order: 1;
}

.content-with-visual.reverse .content-text {
    order: 2;
}

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

.content-visual svg {
    width: 100%;
    height: auto;
    max-width: 300px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .legal-placeholder {
        padding: 40px 20px;
    }
    
    .nav-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .content-with-visual,
    .content-with-visual.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-with-visual.reverse .content-visual,
    .content-with-visual.reverse .content-text {
        order: unset;
    }
    
    .about-hero-image {
        height: 200px;
    }
    
    .content-image {
        height: 200px;
    }
}