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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #eef2ff 100%);
            min-height: 100vh;
            color: #1a1f36;
            padding-top: 30px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ================= HEADER ================= */

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0 10px;
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo-icon {
            width: 300px;
            height: auto;
            animation: float 3s ease-in-out infinite;
            margin-bottom: 20px;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-8px);
            }
        }

        .partner-logos {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .partner-logos img {
            height: 42px;
            width: auto;
            object-fit: contain;
            opacity: .8;
            transition: .3s ease;
        }

        .partner-logos img:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        /* ================= MAIN ================= */
        .main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 70px;
            padding: 30px 0 40px;
        }

        .left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #6b7280;
            margin-bottom: 30px;
        }

        .description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 40px;
        }

        .btn-start {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: #fff;
            border: none;
            padding: 15px 45px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            width: fit-content;
            box-shadow: 0 15px 35px rgba(102, 126, 234, .3);
            transition: .3s ease;
        }

        .btn-start:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, .4);
        }

        /* ================= RIGHT ILLUSTRATION ================= */

        .right {
            position: relative;
            height: 480px;
            animation: slideInRight 0.8s ease-out;

        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ================= CIRCLE GROUP (UNIFIED BG + IMAGE) ================= */

        .circle-group {
            position: absolute;
            width: 420px;
            height: 420px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .circle-bg {
            position: absolute;
            width: 420px;
            height: 420px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            top: 0;
            left: 0;
            box-shadow: 0 40px 70px rgba(102, 126, 234, .3);
            animation: pulse 8s ease-in-out infinite, float-circle 6s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float-circle {

            0%,
            100% {
                transform: translateY(0px) scale(1);
            }

            50% {
                transform: translateY(-20px) scale(1.02);
            }
        }

        .wellbeing-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-weight: 700;
            font-size: 1.15rem;
            text-align: center;
            z-index: 4;
            letter-spacing: 0.12em;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
            max-width: 280px;
            line-height: 1.5;
            word-spacing: 0.1em;
        }

        /* ================= IMAGE WITH CIRCLE BG ================= */

        .image-circle-container {
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            overflow: hidden;
            top: 0;
            left: 0;
            z-index: 2;
            animation: pulse 8s ease-in-out infinite, float-circle 6s ease-in-out infinite;
        }

        .image-circle-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomIn 0.8s ease-out;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* ================= RESPONSIVE ================= */

        @media(max-width:1024px) {
            .main {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
            }

            .left {
                align-items: center;
            }

            .btn-start {
                width: 100%;
            }

            .right {
                height: 400px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .circle-group {
                position: absolute;
                width: 300px;
                height: 300px;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }

            .circle-bg {
                width: 300px;
                height: 300px;
                position: absolute;
                top: 0;
                left: 0;
            }

            .image-circle-container {
                width: 300px;
                height: 300px;
                position: absolute;
                top: 0;
                left: 0;
            }

            .wellbeing-text {
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-size: 1rem;
                max-width: 240px;
                letter-spacing: 0.1em;
            }
        }

        .modal-header {
            border-bottom: none !important;
            padding: 24px 24px 16px 24px !important;
            background: #fff !important;
        }

        .modal-title {
            font-size: 1.5rem !important;
            font-weight: 700 !important;
            color: #1a1f36 !important;
        }

        .modal-subtitle {
            font-size: 0.95rem;
            color: #666;
            font-weight: 500;
            margin-top: 4px;
        }

        .modal-body {
            padding: 24px !important;
            background: #fff !important;
        }

        .modal-content {
            border: none !important;
            border-radius: 12px !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
        }

        .modal-footer {
            border-top: none !important;
            padding: 16px 24px 24px 24px !important;
            background: #fff !important;
        }

        .modal-info-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #333;
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
        }

        .modal-info-text p {
            margin-bottom: 14px;
        }

        .modal-info-text p:last-of-type {
            margin-bottom: 0;
        }

        .checkbox-group {
            margin-top: 20px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #9C6FD8;
        }

        .checkbox-group label {
            font-size: 0.95rem;
            color: #333;
            cursor: pointer;
            margin: 0;
        }

        .checkbox-group a {
            color: #9C6FD8;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .checkbox-group a:hover {
            color: #8B5BA6;
            text-decoration: underline;
        }

        .btn-modal-proceed {
            background: linear-gradient(135deg, #9C6FD8 0%, #8B5BA6 100%) !important;
            color: #fff !important;
            border: none !important;
            padding: 12px 40px !important;
            font-weight: 600 !important;
            border-radius: 8px !important;
            width: 100%;
            box-shadow: 0 8px 20px rgba(156, 111, 216, 0.3) !important;
            transition: all 0.3s ease !important;
        }

        .btn-modal-proceed:hover {
            box-shadow: 0 12px 30px rgba(156, 111, 216, 0.4) !important;
            transform: translateY(-2px);
        }

        .modal-privacy-content {
            font-size: 0.9rem;
            line-height: 1.8;
            color: #333;
        }

        .modal-privacy-content h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1f36;
            margin-bottom: 16px;
            margin-top: 0;
        }

        .modal-privacy-content p {
            margin-bottom: 14px;
            text-align: justify;
        }

        .modal-privacy-content ol {
            margin-bottom: 16px;
            padding-left: 24px;
        }

        .modal-privacy-content li {
            margin-bottom: 12px;
            text-align: justify;
        }

        .modal-privacy-content strong {
            color: #1a1f36;
            font-weight: 600;
        }

        .btn-privacy-close {
            background: linear-gradient(135deg, #9C6FD8 0%, #8B5BA6 100%) !important;
            color: #fff !important;
            border: none !important;
            padding: 10px 32px !important;
            font-weight: 600 !important;
            border-radius: 8px !important;
            box-shadow: 0 8px 20px rgba(156, 111, 216, 0.3) !important;
            transition: all 0.3s ease !important;
        }

        .btn-privacy-close:hover {
            box-shadow: 0 12px 30px rgba(156, 111, 216, 0.4) !important;
            transform: translateY(-2px);
        }
    