/* Auxiliary Pages Styles */

.policy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.policy-section p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.aux-header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.aux-main {
    padding: 80px 0;
    background: var(--accent-color);
    min-height: 60vh;
}

.aux-main .container {
    max-width: 800px;
}

.aux-main h1 {
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.about-section {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.policy-content {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.policy-content p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About page specific styles */
.about-title {
    text-align: center;
}

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

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.section-icon {
    margin-bottom: 16px;
}

.about-image {
    margin-top: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aux-main {
        padding: 60px 0;
    }
    
    .about-section, 
    .policy-content,
    .policy-section {
        padding: 24px;
    }
    
    .aux-main h1 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-section, 
    .policy-content,
    .policy-section {
        padding: 20px;
    }
    
    .aux-main h1 {
        font-size: 1.75rem;
    }
    
    .policy-section h2 {
        font-size: 1.2rem;
    }
}