/* Additional styles for auxiliary pages */

.page-container {
    min-height: calc(100vh - 200px);
    padding: 40px 0 80px 0;
    background: #FAFCFD;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #E8F4F8 0%, #FAFCFD 100%);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1E3A5F;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #4A6B7C;
    margin-bottom: 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.content-block h2 {
    color: #1E3A5F;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E8F4F8;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.content-block ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-block li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #4A6B7C;
}

/* About page specific styles */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.about-section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.values-section {
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    margin-bottom: 1rem;
}

.value-item h3 {
    margin-bottom: 1rem;
    color: #1E3A5F;
}

.team-section {
    text-align: center;
}

.team-section h2 {
    margin-bottom: 2rem;
}

.team-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
}

/* Placeholder content for legal pages */
.content-placeholder {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.placeholder-text {
    font-size: 1.1rem;
    color: #4A6B7C;
    font-style: italic;
    padding: 2rem;
    background: linear-gradient(135deg, #E8F4F8 0%, #FAFCFD 100%);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .content-placeholder {
        padding: 2rem;
    }

    .placeholder-text {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .about-section-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .content-block {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

    .content-block p {
        font-size: 1rem;
    }

    .about-section,
    .about-section.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item {
        padding: 1rem;
    }

    .about-section-image {
        height: 200px;
    }
}