.ages-section {
    padding: 60px 20px;
    background: #fff;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.ages-section * {
    box-sizing: border-box;
}

.ages-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ages-img-col {
    flex: 1;
}

.ages-img-col.mobile-view{
    display: none;
}

.ages-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.ages-text-col {
    flex: 1;
}

.ages-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.2;
}

.highlight-pink {
    color: #e27890;
}

.ages-desc {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

@media (max-width: 900px) {
    .ages-section {
        padding: 20px;
    }

    .ages-container {
        flex-direction: column;
        gap: 30px;
    }

    .ages-title {
        font-size: 28px;
        text-align: center;
    }

    .ages-desc {
        text-align: center;
    }

    .ages-img-col{
        display: none;
    }

    .ages-img-col.mobile-view{
        display: flex;
        flex: 1;
    }
}