/* Auxiliary Pages Styles */

.centered {
    text-align: center;
}

.centered .container > * {
    margin-left: auto;
    margin-right: auto;
}

.nav-links {
    margin-left: auto;
}

.nav-links a {
    color: var(--aegean-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--marble-white) 0%, #ffffff 100%);
    border-radius: 12px;
}

.page-header h1 {
    font-size: 36px;
    color: var(--aegean-blue);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.content-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.content-section h2 {
    font-size: 24px;
    color: var(--aegean-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.content-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-section h3 {
    font-size: 20px;
    color: var(--terracotta);
    margin: 25px 0 15px;
    font-weight: 500;
}

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

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.illustration {
    max-width: 100%;
    height: auto;
}

.vision-content {
    text-align: center;
}

.vision-content .illustration {
    margin-bottom: 30px;
}

.contact-info {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info strong {
    color: var(--aegean-blue);
}

/* Policy Placeholder Styles */
.policy-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.policy-placeholder p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.policy-placeholder ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.policy-placeholder li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: #888;
}

.policy-placeholder li:last-child {
    border-bottom: none;
}

/* Responsive for auxiliary pages */
@media (max-width: 768px) {
    .main-content {
        padding: 20px 0 60px;
    }
    
    .page-header {
        margin-bottom: 40px;
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        font-size: 20px;
    }
    
    .policy-placeholder {
        padding: 30px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .about-content-image {
        height: 250px;
    }
}