/* Page-specific styles for auxiliary pages */

.page-header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.back-link {
    color: #00D4AA;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    text-decoration: underline;
}

.page-content {
    padding: 80px 0;
    background-color: #FFFFFF;
    min-height: 60vh;
}

.page-content h1 {
    color: #2C2C2C;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.page-section {
    margin-bottom: 40px;
}

.page-section h2 {
    color: #2C2C2C;
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.page-section p {
    color: #8A8A8A;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.empty-content {
    text-align: center;
    padding: 80px 0;
}

.placeholder-text {
    color: #8A8A8A;
    font-style: italic;
    font-size: 1.125rem;
}

.last-updated {
    color: #8A8A8A;
    font-size: 0.875rem;
    margin-bottom: 30px;
    font-style: italic;
}

/* About Page Specific Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-hero-content h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.about-hero-content p {
    font-size: 1.125rem;
    color: #8A8A8A;
}

.about-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.story-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.value-item {
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 12px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.story-content p {
    font-size: 1.125rem;
    color: #8A8A8A;
    margin-bottom: 20px;
}

.service-highlights h2 {
    margin-bottom: 40px;
}

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

.highlight-item {
    padding: 20px;
    text-align: center;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background-color: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.highlight-item h4 {
    margin-bottom: 8px;
    color: #2C2C2C;
}

.highlight-item p {
    color: #8A8A8A;
    font-size: 0.875rem;
    margin: 0;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .page-content {
        padding: 60px 0;
    }

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

    .page-section h2 {
        font-size: 1.5rem;
    }

    .empty-content {
        padding: 60px 0;
    }
    
    .about-hero,
    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-hero-content h2 {
        font-size: 1.75rem;
    }
}