/* Pages Specific Styles */

.page-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a:not(.btn) {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:not(.btn):hover {
    color: #1e293b;
}

.page-content {
    min-height: 70vh;
    padding: 3rem 0;
}

.page-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
}

.page-hero h1 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-hero p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-section h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6366f1;
}

.content-section p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.values-list strong {
    color: #1e293b;
}

.content-placeholder {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
    .content-img {
        height: 250px;
    }
}

.mission-content {
    text-align: center;
    padding: 2rem;
}

.mission-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .page-content {
        padding: 2rem 0;
    }

    .page-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 1.5rem 0;
        margin-bottom: 2rem;
    }

    .content-placeholder {
        padding: 2rem;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .header-content {
        text-align: center;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .values-list li {
        padding: 0.75rem;
    }

    .feature-item {
        padding: 1.5rem;
    }
}