        :root {
            --primary: #0072BC;
            --secondary: #900E0E;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --accent: #4cc9f0;
            --success: #4bb543;
        }
        #cta-section-area{
            display: none !important;
            visibility: hidden !important;
        }
       
        h1, h2, h3, .display-font {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        .hero-section {
            background: linear-gradient(130deg, var(--dark), #F14B4B);
            color: white;
            padding: 6rem 0;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80') center/cover;
            opacity: 0.15;
        }
        .card-plan {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            position: relative;
        }
        .card-plan:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        .card-header {
            padding: 2rem;
            text-align: center;
        }
        .standard .card-header {
            background: linear-gradient(135deg, var(--primary), #3a0ca3);
        }
        .premium .card-header {
            background: linear-gradient(135deg, #28A88E, #1A7A6A);
        }
        .price {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        .price small {
            font-size: 1rem;
            font-weight: 400;
        }
        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(76, 201, 240, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--accent);
            font-size: 1.25rem;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .module-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--accent);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .module-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 0.75rem 2rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #3a0ca3;
            border-color: #3a0ca3;
            transform: translateY(-2px);
        }
        .btn-pink {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white;
            padding: 0.75rem 2rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        .btn-pink:hover {
            background-color: #b5179e;
            border-color: #b5179e;
            color: white;
            transform: translateY(-2px);
        }
        .total-price {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--secondary);
            text-align: center;
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(247, 37, 133, 0.1);
            border-radius: 12px;
        }
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }
        .floating-shapes div {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }
        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: -150px;
            right: -150px;
        }
        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--secondary);
            bottom: -100px;
            left: -100px;
        }
        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            margin: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.15);
        }
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(76, 201, 240, 0.1);
            font-family: serif;
            line-height: 1;
        }
        .faq-item {
            margin-bottom: 1rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        .faq-header {
            background: rgba(67, 97, 238, 0.1);
            padding: 1rem 1.5rem;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .faq-header:hover {
            background: rgba(67, 97, 238, 0.2);
        }
        .faq-body {
            padding: 1.5rem;
            background: white;
        }
        .highlight-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            transform: rotate(15deg);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1;
        }
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .hover-scale {
            transition: transform 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.03);
        }
        .info-icon {
            color: var(--primary);
            cursor: pointer;
            margin-left: 0.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .info-icon:hover {
            color: var(--secondary);
            transform: scale(1.2);
        }
        .partner-logo {
            height: 80px;
            width: auto;
            object-fit: contain;
            filter: grayscale(0);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1);
        }
        .modal-module .modal-content {
            border-radius: 16px;
            border: none;
            overflow: hidden;
        }
        .modal-module .modal-header {
            background: var(--primary);
            color: white;
            border-radius: 16px 16px 0 0 !important;
        }
        .modal-module .modal-body {
            padding: 2rem;
        }
        .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .form-switch .form-check-input:checked {
            background-color: var(--primary);
            border-color: var(--primary);
        }
        .form-control, .form-select {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            transition: all 0.3s ease;
        }
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }
        .nav-pills .nav-link.active {
            background-color: var(--primary);
        }
        .progress {
            height: 10px;
            border-radius: 5px;
        }
        .progress-bar {
            background-color: var(--primary);
        }
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .section-divider {
            height: 100px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            clip-path: polygon(0 0, 100% 0, 100% 50%, 50% 100%, 0 50%);
            margin: 5rem 0;
            opacity: 0.1;
        }
        .feature-badge {
            background: rgba(76, 201, 240, 0.1);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 1rem;
        }
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
            40% {transform: translateY(-20px);}
            60% {transform: translateY(-10px);}
        }

        .btn-primary {
          color: #fff !important;
          background-color: #0072BC !important;
          border-color: #0072BC !important;
        }

        .text-primary{
            color: #0072BC !important;
        }

        .text-success{
            color: #28A88E !important;
        }

        .btn-primary:hover {
          color: #fff !important;
          background-color: #005a94 !important;
          border-color: #00538a !important;
        }

        .btn-primary:focus, .btn-primary.focus {
          color: #fff !important;
          background-color: #005a94 !important;
          border-color: #00538a !important;
          box-shadow: 0 0 0 0.2rem rgba(0, 114, 188, 0.5);
        }

        .btn-primary.disabled, .btn-primary:disabled {
          color: #fff !important;
          background-color: #0072BC !important;
          border-color: #0072BC !important;
          opacity: 0.65;
        }

        .btn-primary:not(:disabled):not(.disabled):active, 
        .btn-primary:not(:disabled):not(.disabled).active,
        .show > .btn-primary.dropdown-toggle {
          color: #fff !important;
          background-color: #00538a !important;
          border-color: #004d7e !important;
        }

        .btn-primary:not(:disabled):not(.disabled):active:focus, 
        .btn-primary:not(:disabled):not(.disabled).active:focus,
        .show > .btn-primary.dropdown-toggle:focus {
          box-shadow: 0 0 0 0.2rem rgba(0, 114, 188, 0.5) !important;
        }