* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* MAIN LAYOUT */
.aftercare-main {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/* LEFT SIDE TEXT */
.aftercare-content {
    width: 50%;
    padding: 40px 35px;
    background: #ffffff;
}

.aftercare-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.aftercare-content h3 {
    font-size: 1.2rem;
    margin-top: 22px;
    margin-bottom: 10px;
}

.aftercare-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    max-width: 700px;
}

/* RIGHT SIDE VIDEO */
.aftercare-video {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    background: #000;
}

.aftercare-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE (TABLET + MOBILE) */
@media (max-width: 900px) {

    .aftercare-main {
        flex-direction: column;
    }

    .aftercare-content,
    .aftercare-video {
        width: 100%;
        height: auto;
        position: static;
    }

    .aftercare-content {
        padding: 30px 20px;
    }

    .aftercare-video {
        min-height: 300px;
    }

    .aftercare-video video {
        height: 300px;
    }

    .aftercare-content h2 {
        font-size: 1.8rem;
    }

    .aftercare-content h3 {
        font-size: 1.1rem;
    }

    .aftercare-content p {
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: 100%;
    }
}