.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
}

.hero-text p {
    font-size: 1.05rem;
    color: #555;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-bottom: 3rem;
}

.section-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.section-card h2 {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.3rem;
}

.section-card p {
    font-size: 0.98rem;
    color: #555;
}

.section-card ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    color: #555;
}

.section-icon {
    font-size: 1.6rem;
    color: #f7a600;
}

.section-wide {
    margin-bottom: 3rem;
}

.section-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.location-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.2rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.location-card h3 {
    margin-bottom: 0.4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
}

.benefit i {
    color: #2f9e44;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
}
