.area-map-section {
    padding: 60px 20px;
    background-color: #f4f1ed;
    text-align: center;
}

.area-map-section .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.area-map-section .section-title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #004aad;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.area-map-section .section-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

.area-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* #endregion */