/* Areas 2026 Styles */
#areas-2026 {
    background-color: #e6f4ff;
    /* Very light blue background matching image */
    padding: 80px 5%;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #0A2540;
}

.areas-header {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 60px auto;
}

.areas-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0A2540;
}

.areas-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #5A6B7C;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 90%;
    margin: 0 auto;
}

.area-card {
    background-color: #FFFFFF;
    border: 1.5px solid #daeeff;
    border-radius: 20px;
    padding: 26px 22px 22px;
    transition: transform .35s cubic-bezier(.34, 1.4, .64, 1), box-shadow .35s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #daeeff;
    transition: background-color 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #3bb2fb;
}

.area-card:hover::before {
    background-color: #3bb2fb;
}

.area-card:hover .area-icon {
    transform: rotate(-8deg);
}

.area-icon {
    width: 50px;
    height: 50px;
    background-color: #e8f3fc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #3BB2FB;
    transition: transform .3s;
    /* Blue matching the design */
}

/* Ensuring SVGs match the color */
.area-icon svg {
    fill: #3BB2FB;
}

.area-card h3 {
    font-size: 15px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 7px;
    color: #0a5fd8;
}

.area-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6e85;
    flex-grow: 1;
    /* Pushes the link to the bottom */
    margin-bottom: 24px;
    width: 100%;
}

.area-link {
    display: inline-flex;
    align-items: center;
    color: #3BB2FB;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
    align-self: flex-start;
}

.area-link:hover {
    color: #2b9ddb;
}

@media (max-width: 1368px) {
    .areas-grid {
        max-width: 1100px;
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    #areas-2026 {
        padding: 60px 5%;
    }

    .areas-header h2 {
        font-size: 28px;
    }
}