/* Additional styles for auxiliary pages */

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

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

.page-nav a:hover {
    color: #00FF41;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background-color: #2B2B2B;
    border-radius: 12px;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #00FF41;
    margin: 0;
}

.about-section {
    background-color: #2B2B2B;
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #00FF41;
    margin-bottom: 1.5rem;
    text-align: left;
    background: none;
    -webkit-text-fill-color: #00FF41;
}

.about-section p {
    color: #E5E7EB;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section.centered {
    text-align: center;
}

.about-section.centered h2 {
    text-align: center;
}

.content-with-visual {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

.content-with-visual.reverse {
    flex-direction: row-reverse;
}

.content-with-visual .text-content {
    flex: 1;
}

.content-with-visual .visual-content {
    flex: 0 0 300px;
}

.about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #00FF41;
}

.about-illustration {
    width: 100%;
    height: 200px;
}

.policy-content {
    background-color: #2B2B2B;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #3A3A3A;
    min-height: 400px;
}

.policy-content h2 {
    color: #00FF41;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
    background: none;
    -webkit-text-fill-color: #00FF41;
    text-align: left;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #E5E7EB;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .content-with-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .content-with-visual.reverse {
        flex-direction: column;
    }
    
    .content-with-visual .visual-content {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    
    .about-section.centered h2 {
        text-align: center;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .about-section,
    .policy-content {
        padding: 2rem 1.5rem;
    }
    
    .about-section h2,
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .page-nav {
        gap: 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-section,
    .policy-content {
        padding: 1.5rem 1rem;
    }
}