/* Auxiliary Pages Styles */

/* About page content alignment */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.about-text {
    text-align: left;
}

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

.aux-main {
    min-height: 70vh;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.aux-main h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.aux-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.aux-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.aux-section h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.aux-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

/* About Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    padding: 25px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 20%);
    border-radius: 10px;
    color: white;
    text-align: center;
}

.value-item h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-item p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 1rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.achievement-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    color: white;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Policy Pages Styles */
.policy-content {
    padding: 40px 0;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Header adjustments for auxiliary pages */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .aux-main {
        padding: 40px 0;
    }
    
    .aux-main h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .aux-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .aux-section h2 {
        font-size: 1.5rem;
    }
    
    .aux-section p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .values-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-item {
        padding: 25px 15px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .back-link {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .aux-main h1 {
        font-size: 1.7rem;
    }
    
    .aux-section {
        padding: 20px;
    }
    
    .aux-section h2 {
        font-size: 1.3rem;
    }
    
    .value-item,
    .achievement-item {
        padding: 20px 15px;
    }
    
    .achievement-number {
        font-size: 1.8rem;
    }
}