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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #eff0eb;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 1440px;
    height: 900px;
    margin: 0 auto;
    background-color: #eff0eb;
    overflow: visible;
}

/* Background SVG */
.background-svg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: -6.67%;
    pointer-events: none;
}

.background-svg img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Top left decorative icon */
.top-left-icon {
    position: absolute;
    left: 74px;
    top: 56px;
    width: 106px;
    height: 98px;
}

.top-left-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Logo */
.logo {
    position: absolute;
    left: 50%;
    top: 53px;
    transform: translateX(-50%);
    width: 150px;
    height: 48px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Main Heading */
.main-heading {
    position: absolute;
    left: 50%;
    top: 149px;
    transform: translateX(-50%);
    width: 452px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    text-align: center;
    color: #000000;
}

/* Subheading */
.subheading {
    position: absolute;
    left: 739px;
    top: 257px;
    transform: translateX(-50%);
    width: 540px;
    height: 79px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

/* Cards Container */
.cards-container {
    display: flex;
    gap: 64px;
    position: absolute;
    left: 50%;
    top: 364px;
    transform: translateX(-50%);
    padding-bottom: 32px;
    width: auto;
    justify-content: center;
}

/* Card Styles */
.card {
    position: relative;
    width: 420px;
    height: 460px;
}

.card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 420px;
    height: 440px;
    background: white;
    border: 1px solid #ddded1;
    border-radius: 64px 0 64px 0;
}

.card-title {
    position: absolute;
    left: 46px;
    top: 48px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: normal;
    color: #141e21;
}

.card-content {
    position: absolute;
    left: 46px;
    top: 92px;
    width: 308px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0;
    line-height: 0;
    color: #1b2a2f;
}

.card-content .medium-text {
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
}

.card-content .small-text {
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    margin-bottom: 0;
}

.card-content p {
    font-size: 14px;
    line-height: normal;
    margin-bottom: 0;
}

.bullet-list {
    list-style-position: outside;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.bullet-list li {
    font-size: 12px;
    line-height: normal;
    margin-bottom: 12px;
}

.bullet-list li:last-child {
    margin-bottom: 0;
}

.bullet-list li span {
    font-size: 12px;
    line-height: normal;
}

/* Free text */
.free-text {
    position: absolute;
    left: 50%;
    top: 405px;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 10px;
    line-height: 14px;
    color: #141e21;
}

/* Book call text */
.book-call-text {
    position: absolute;
    left: 50%;
    top: 328px;
    transform: translateX(-50%);
    width: 308px;
    height: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    text-align: center;
    color: #1b2a2f;
}

/* Button Container */
.button-container {
    position: absolute;
    left: 127px;
    top: 356px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    text-decoration: none;
    background-color: #b2ef48;
    border: none;
    border-radius: 5px;
    padding: 16px;
    width: 166px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 14px;
    text-align: center;
    color: #141e21;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.btn-primary.centered {
    position: absolute;
    left: 50%;
    top: 356px;
    transform: translateX(-50%);
}

.btn-primary:hover {
    background-color: #a3e039;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(270deg);
}

.arrow-icon img {
    width: 100%;
    height: 100%;
}

/* Right side decorative elements */
.right-decorative {
    position: absolute;
    right: 146px;
    top: 149px;
    width: 222px;
    height: 163px;
}

.right-decorative img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* Left side decorative image */
.left-decorative {
    position: absolute;
    left: -9.96%;
    top: 56px;
    width: 180px;
    height: 140px;
}

.masked-image {
    width: 100%;
    height: 100%;
    clip-path: url(#mask-shape);
}

    .masked-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 9999;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        align-items: stretch;
        justify-content: flex-end;
        overflow: hidden;
    }

    .modal-content {
        background-color: white;
        width: 100%;
        max-width: 700px;
        height: 100vh;
        border-radius: 50px 0 0 0;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal.show .modal-content {
        transform: translateX(0);
    }

    .modal-close {
        position: absolute;
        left: 24px;
        top: 24px;
        font-size: 36px;
        font-weight: 300;
        color: #666;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
    }

    .modal-close:hover {
        color: #000;
    }

    .modal-body {
        padding: 80px 60px 80px 60px;
        overflow-y: auto;
        flex: 1;
    }

    .modal-heading {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 32px;
        line-height: 1.3;
        color: #000;
        margin-bottom: 24px;
    }

    .modal-heading strong {
        font-weight: 700;
    }

    .modal-subtext {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        color: #666;
        margin-bottom: 48px;
    }

    .video-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .video-item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
        padding: 12px;
        border-bottom: 1px solid #e5e5e5;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .video-item:hover {
        background-color: rgba(178, 239, 72, 0.1);
        border-bottom-color: transparent;
        border-radius: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .video-item:last-child {
        border-bottom: none;
    }

    .video-content {
        flex: 1;
    }

    .video-content h3 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 20px;
        line-height: 1.3;
        color: #000;
        margin-bottom: 3px;
    }

    .video-content p {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        color: #666;
    }

    .play-button {
        flex-shrink: 0;
        cursor: pointer;
        transition: transform 0.2s;
    }

    .play-button:hover {
        transform: scale(1.05);
    }

    .modal-cta {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 24px 60px;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .modal-cta-button {
        background-color: #b2ef48;
        border: none;
        border-radius: 8px;
        padding: 18px 36px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: #141e21;
        cursor: pointer;
        white-space: nowrap;
        transition: background-color 0.2s;
        text-decoration: none;
        display: inline-block;
    }

    .modal-cta-button:hover {
        background-color: #a3e039;
    }

    .modal-cta-subtext {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        line-height: 1.4;
        color: #666;
    }

    .modal-cta-subtext strong {
        color: #000;
        font-weight: 600;
    }

    /* Modal responsive */
    @media (max-width: 768px) {
        .modal-content {
            max-width: 90%;
            border-radius: 32px 0 0 0;
        }

        .modal-close {
            right: 16px;
            left: auto;
            top: 16px;
            font-size: 32px;
        }

        .modal-body {
            padding: 60px 24px 200px 24px;
        }

        .modal-heading {
            font-size: 24px;
        }

        .modal-subtext {
            font-size: 14px;
            margin-bottom: 32px;
        }

        .video-list {
            gap: 24px;
        }

        .video-item {
            gap: 16px;
            padding-bottom: 24px;
        }

        .video-content h3 {
            font-size: 18px;
        }

        .video-content p {
            font-size: 14px;
        }

        .play-button svg {
            width: 50px;
            height: 50px;
        }

        .modal-cta {
            margin-bottom: 38px;
            padding: 24px 24px 60px 24px;
            flex-direction: column;
            align-items: stretch;
            gap: 16px;
        }

        .modal-cta-button {
            width: 100%;
            text-align: center;
            padding: 16px 24px;
            font-size: 16px;
        }

        .modal-cta-subtext {
            text-align: center;
            font-size: 12px;
        }
    }

    /* Video Player Modal */
    .video-player-modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .video-player-modal.show {
        opacity: 1;
    }

    .video-player-content {
        position: relative;
        width: 90%;
        max-width: 1200px;
        aspect-ratio: 16 / 9;
    }

    .video-player-close {
        position: absolute;
        right: -50px;
        top: 0;
        font-size: 40px;
        font-weight: 300;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        line-height: 1;
        transition: opacity 0.2s;
    }

    .video-player-close:hover {
        opacity: 0.7;
    }

    .video-player-container {
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
    }

    .video-player-container iframe {
        width: 100%;
        height: 100%;
    }

    /* Video player responsive */
    @media (max-width: 768px) {
        .video-player-content {
            width: 95%;
        }

        .video-player-close {
            right: 10px;
            top: -50px;
            font-size: 36px;
        }
    }

/* Responsive adjustments */
@media (max-width: 1440px) {
    .container {
        width: 100%;
        height: auto;
        min-height: 900px;
    }
    
    .cards-container {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Large tablet/small desktop adjustments */
@media (max-width: 1200px) {
    .container {
        min-height: auto;
        height: auto;
        padding: 40px 20px 60px 20px;
        overflow: visible;
    }

    .top-left-icon {
        left: 30px;
        top: 40px;
        width: 90px;
        height: 83px;
    }

    .logo {
        top: 40px;
    }

    .main-heading {
        width: 85%;
        max-width: 700px;
        font-size: 32px;
        line-height: 40px;
        top: 120px;
    }

    .subheading {
        position: relative;
        width: 85%;
        max-width: 650px;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        margin-top: 80px;
        font-size: 15px;
    }

    .cards-container {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
        margin: 60px auto 60px auto;
        gap: 24px;
        width: 90%;
        max-width: 900px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 420px;
        min-width: 380px;
        height: auto;
        min-height: 500px;
        overflow: visible;
    }

    .card::before {
        width: 100%;
        height: 100%;
        min-height: 480px;
    }

    .card-title {
        position: absolute;
    }

    .card-content {
        position: absolute;
    }

    .free-text {
        position: absolute;
    }

    .book-call-text {
        position: absolute;
    }

    .button-container {
        position: absolute;
    }

    .btn-primary.centered {
        position: absolute;
    }

    .right-decorative {
        right: 20px;
        top: 100px;
        width: 160px;
        height: 117px;
    }
}

/* Tablet adjustments - stack cards */
@media (max-width: 920px) {
    .container {
        min-height: auto;
        height: auto;
        padding: 30px 20px 60px 20px;
    }

    .top-left-icon {
        left: 20px;
        top: 30px;
        width: 80px;
        height: 74px;
    }

    .logo {
        top: 30px;
    }

    .main-heading {
        width: 90%;
        max-width: 600px;
        font-size: 30px;
        line-height: 38px;
        top: 100px;
    }

    .subheading {
        width: 90%;
        max-width: 600px;
        left: 50%;
        top: 175px;
        height: auto;
        font-size: 15px;
    }

    .cards-container {
        position: relative;
        left: 0;
        transform: none;
        top: 0;
        margin: 60px auto 60px auto;
        gap: 24px;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
    }

    .card {
        width: 100%;
        max-width: 480px;
        min-width: unset;
        height: auto;
        min-height: 460px;
    }

    .card::before {
        width: 100%;
        height: 100%;
        min-height: 440px;
    }

    .card-title {
        position: absolute;
        font-size: 20px;
    }

    .card-content {
        position: absolute;
    }

    .free-text {
        position: absolute;
    }

    .book-call-text {
        position: absolute;
    }

    .button-container {
        position: absolute;
    }

    .btn-primary.centered {
        position: absolute;
    }

    .right-decorative {
        right: 15px;
        top: 90px;
        width: 140px;
        height: 103px;
    }

    .left-decorative {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
        overflow-x: hidden;
        overflow-y: visible;
    }

    /* Hide decorative elements on mobile for cleaner look */
    .background-svg {
        opacity: 0.3;
    }

    .top-left-icon,
    .right-decorative,
    .left-decorative {
        display: none;
    }

    /* Logo */
    .logo {
        top: 30px;
        width: 120px;
        height: 38px;
    }

    /* Main Heading */
    .main-heading {
        width: 90%;
        max-width: 100%;
        font-size: 28px;
        line-height: 36px;
        letter-spacing: -0.56px;
        top: 90px;
        padding: 0 10px;
    }

    /* Subheading */
    .subheading {
        width: 90%;
        max-width: 100%;
        left: 50%;
        top: 96px;
        font-size: 15px;
        line-height: 22px;
        height: auto;
        padding: 0 10px;
    }

    /* Cards Container */
    .cards-container {
        position: relative;
        left: 0;
        top: 64px;
        transform: none;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        margin-bottom: 40px;
    }

    /* Card Styles */
    .card {
        width: 100%;
        max-width: 420px;
        height: auto !important;
        min-height: auto !important;
        margin: 0 auto;
        padding: 32px 24px 24px 24px;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible;
        z-index: 1;
    }

    .card::before {
        width: 100%;
        height: 100% !important;
        min-height: auto !important;
        border-radius: 32px 0 32px 0;
    }

    .card-title {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        font-size: 20px;
        width: 100%;
        margin-bottom: 8px;
    }

    .card-content {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100%;
        max-width: 100%;
        height: auto !important;
        margin-bottom: 8px;
    }

    .free-text {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        bottom: auto !important;
        transform: none !important;
        text-align: center;
        margin-top: 8px;
    }

    .book-call-text {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 8px;
    }

    .button-container {
        position: relative !important;
        left: 0 !important;
        transform: none !important;
        top: auto !important;
        bottom: auto !important;
        margin-top: 8px;
        justify-content: center;
        margin-bottom: 24px;
    }

    .btn-primary.centered {
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 10px auto 24px auto;
        display: block;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .container {
        padding: 16px 12px;
    }

    .logo {
        top: 20px;
        width: 100px;
        height: 32px;
    }

    .main-heading {
        font-size: 24px;
        line-height: 32px;
        top: 75px;
    }

    .subheading {
        font-size: 14px;
        line-height: 20px;
        top: 64px;
    }

    .cards-container {
        top: 48px;
        gap: 20px;
    }

    .card {
        max-width: 100%;
    }

    .card::before {
        border-radius: 24px 0 24px 0;
    }

    .card-title {
        font-size: 18px;
        left: 20px;
        top: 24px;
    }

    .card-content {
        left: 20px;
        top: 64px;
        width: calc(100% - 40px);
    }

    .card-content .medium-text {
        font-size: 13px;
    }

    .card-content .small-text {
        font-size: 11px;
    }

    .bullet-list {
        padding-left: 18px;
    }

    .bullet-list li {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .btn-primary {
        width: 140px;
        font-size: 16px;
        padding: 14px;
    }
}

