/* Additional styles for auxiliary pages */
.page-main {
    padding: 4rem 0;
    min-height: 60vh;
}

.page-main h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
    text-align: center;
    line-height: 1.2;
}

.page-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: left;
    line-height: 1.2;
}

.page-section p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.page-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content p {
    color: #6b7280;
    font-size: 1.2rem;
    font-style: italic;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main h1 {
        font-size: 2rem;
    }
    
    .page-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .page-section h2 {
        font-size: 1.5rem;
    }
    
    .page-content {
        padding: 2rem;
    }
    
    .page-main {
        padding: 3rem 0;
    }
}

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

.about-text {
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-intro .about-image,
.about-mission .about-image {
    order: 2;
}

.about-mission .about-image {
    order: 1;
}

.about-mission .about-text {
    order: 2;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.advantage-icon {
    margin-bottom: 1.5rem;
}

.advantage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.advantage-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

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

.location-text {
    text-align: left;
}

.location-illustration {
    justify-self: center;
}

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

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-intro .about-image,
    .about-mission .about-image,
    .about-mission .about-text {
        order: unset;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-illustration {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-main h1 {
        font-size: 1.75rem;
    }
    
    .page-section {
        padding: 1.5rem;
    }
    
    .page-section h2 {
        font-size: 1.25rem;
    }
    
    .page-content {
        padding: 1.5rem;
    }
}