/* Auxiliary Pages CSS */

/* Page Header */
.page-header {
    background-color: white;
    border-bottom: 1px solid #E2E8F0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D3748;
    text-decoration: none;
}

.page-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.page-nav a {
    color: #4A5568;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.page-nav a:hover,
.page-nav a.active {
    color: #D69E2E;
    border-bottom-color: #D69E2E;
}

.nav-contact {
    background-color: #D69E2E !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    border-bottom: none !important;
}

.nav-contact:hover {
    background-color: #B7791F !important;
    border-bottom: none !important;
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-title p {
    font-size: 1.1rem;
    color: #E2E8F0;
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    background-color: white;
}

.content-section.alt {
    background-color: #F7FAFC;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

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

.content-text h2 {
    margin-bottom: 30px;
    color: #2D3748;
}

.content-text p {
    margin-bottom: 20px;
    color: #4A5568;
    line-height: 1.7;
}

.mission-list {
    list-style: none;
    margin-top: 30px;
}

.mission-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4A5568;
}

.mission-list li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #D69E2E;
    font-size: 0.8rem;
}

.content-image {
    background-color: #CBD5E0;
    border-radius: 12px;
    overflow: hidden;
}

.content-image .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-color: #E2E8F0;
    color: #4A5568;
    font-weight: 500;
    text-align: center;
    font-size: 1.1rem;
}

/* Values Section */
.values-content {
    text-align: center;
}

.values-content h2 {
    margin-bottom: 60px;
}

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

.value-item {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.value-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    margin-bottom: 15px;
    color: #2D3748;
}

.value-item p {
    color: #4A5568;
    line-height: 1.6;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
    background-color: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-bottom: 30px;
    color: #2D3748;
}

.legal-text h3 {
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2D3748;
}

.legal-text p {
    margin-bottom: 20px;
    color: #4A5568;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: #4A5568;
    line-height: 1.6;
}

.placeholder-text {
    font-style: italic;
    color: #718096;
    text-align: center;
    padding: 60px 40px;
    background-color: #F7FAFC;
    border-radius: 12px;
    border: 2px dashed #CBD5E0;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-nav {
        gap: 20px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .content-image .image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 15px 0;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .page-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-title {
        padding: 60px 0;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
}