/* =========================
   AGE-BASED EXPERIENCE
========================= */
.age-experience {
    padding: 6rem 1.5rem;
    background-color: var(--light-gray);
}

/* Wrapper */
.age-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.age-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.age-head h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 0.6rem;
}

.age-head p {
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Groups */
.age-groups {
    display: flex;
    gap: 2.5rem;
    justify-content: space-between;
}

/* Individual group */
.age-group {
    flex: 1;
    background-color: var(--white-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.age-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.8rem;
}

.age-group p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .age-groups {
        flex-direction: column;
        gap: 2rem;
    }

    .age-group {
        text-align: left;
    }

    .age-number {
        margin-bottom: 0.5rem;
    }

}