  :root {
            --primary-blue: #2a418d;
            --accent-orange: #ff6542;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --text-dark: #2c2c2c;
            --text-muted: #6c757d;
        }
        
        * {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }
        
        body {
            background-color: #fafafa;
            color: var(--text-dark);
        }
        
        .btn-orange {
            background-color: var(--accent-orange);
            border-color: var(--accent-orange);
            color: white;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-orange:hover {
            background-color: #e55a3b;
            border-color: #e55a3b;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 101, 66, 0.3);
        }
        
        .btn-outline-blue {
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            background: transparent;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-outline-blue:hover {
            background-color: var(--primary-blue);
            color: white;
        }
        
        .navbar {
            background-color: var(--white) !important;
            box-shadow: none;
            border-bottom: 1px solid #e9ecef;
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 15px;
            padding: 8px 0 !important;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
        }
        
        .hero-section {
            background-color: var(--white);
            padding: 80px 0 60px 0;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .hero-title .text-blue {
            color: var(--primary-blue);
        }
        
        .hero-title .text-orange {
            color: var(--accent-orange);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
            color: var(--text-muted);
        }
        
        .hero-benefits {
            margin: 2rem 0 3rem 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: var(--text-dark);
        }
        
        .benefit-item .check-icon {
            width: 24px;
            height: 24px;
            background-color: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            flex-shrink: 0;
        }
        
        .benefit-item .check-icon::after {
            content: "✓";
            color: white;
            font-weight: bold;
            font-size: 12px;
        }
        
        .trust-badges {
            background-color: var(--light-gray);
            padding: 30px 0;
        }
        
        .trust-badge {
            background: var(--white);
            border-radius: 8px;
            padding: 16px 20px;
            margin: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            font-weight: 600;
            color: var(--text-dark);
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
        }
        
        .trust-badge i {
            margin-right: 8px;
            color: var(--primary-blue);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .target-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .target-card:hover {
            transform: translateY(-5px);
        }
        
        .target-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        .target-card h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .target-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .highlight-banner {
            background: var(--accent-orange);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
            font-weight: 600;
        }

          .highlight-banner-2 {
            background: #04ADF2;
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
            font-weight: 600;
        }
        
        .discovery-section {
            background: var(--white);
            padding: 80px 0;
        }
        
        .discovery-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .discovery-title .orange-text {
            color: var(--accent-orange) !important;
        }
        
        .discovery-card {
            background: var(--white);
            border: 1px solid #e9ecef;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
        }
        
        .discovery-card h4 {
            color: var(--text-dark);
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .discovery-card h4 .icon {
            margin-right: 8px;
        }
        
        .discovery-list {
            list-style: none;
            padding-left: 0;
        }
        
        .discovery-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            font-size: 0.95rem;
        }
        
        .discovery-list li::before {
            content: "•";
            color: var(--accent-orange);
            font-weight: bold;
            margin-right: 8px;
            margin-top: 2px;
        }
        
        .price-banner {
            background: var(--primary-blue);
            color: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            margin: 3rem 0;
        }
        
        .price-banner .original-price {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .price-banner .final-price {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .price-banner .orange-text {
            color: var(--accent-orange);
        }
        
        .advantages-section {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .advantage-item {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
        }
        
        .advantage-icon {
            font-size: 1.5rem;
            margin-right: 1rem;
            width: 40px;
            text-align: center;
        }
        
        .quote-section {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0 0 0;
            border-left: 4px solid var(--accent-orange);
            font-style: italic;
            font-size: 1.1rem;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .comparison-section {
            background: var(--white);
            padding: 80px 0;
        }
        
        .comparison-table {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 5px rgba(0,0,0,0.08);
            margin: 3rem 0;
        }
        
        .comparison-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .comparison-table th {
            background: var(--light-gray);
            padding: 1rem;
            font-weight: 700;
            border-bottom: 1px solid #e9ecef;
        }
        
        .comparison-table td {
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
        }
        
        .comparison-table .first-col {
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table .our-col {
            background: rgba(74, 111, 165, 0.05);
            color: var(--text-dark);
        }
        
        .check-mark {
            color: #28a745;
            font-weight: bold;
        }
        
        .x-mark {
            color: #dc3545;
            font-weight: bold;
        }
        
        .testimonials-section {
            background: var(--light-gray);
            padding: 80px 0;
        }
        
        .testimonial-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--accent-orange);
            line-height: 1;
        }
        
        .testimonial-quote {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            padding-top: 1rem;
        }
        
        .testimonial-author {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.3rem;
        }
        
        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .bonus-section {
            background: var(--primary-blue);
            color: white;
            padding: 80px 0;
        }
        
        .bonus-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .bonus-subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }
        
        .bonus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .bonus-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
        }
        
        .bonus-item .icon {
            background: var(--accent-orange);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
        }
        
        .limited-banner {
            background: var(--accent-orange);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
        }
        
        .final-cta-section {
            background: var(--white);
            padding: 80px 0;
        }
        
        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-muted);
        }
        
        .form-container {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 3rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .form-title {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 1rem;
            font-size: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(74, 111, 165, 0.25);
        }
        
        .footer {
            background: var(--primary-blue);
            color: white;
            padding: 3rem 0 2rem 0;
        }
        
        .footer h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .footer p {
            margin-bottom: 1rem;
        }
        
        .footer a {
            color: white;
            text-decoration: none;
        }
        
        .footer a:hover {
            color: var(--accent-orange);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .discovery-title {
                font-size: 2rem;
            }
            
            .trust-badge {
                margin: 5px;
                padding: 12px 16px;
                font-size: 0.9rem;
            }
            
            .bonus-grid {
                grid-template-columns: 1fr;
            }
            
            .advantage-grid {
                grid-template-columns: 1fr;
            }
        }

                .cta-section {
            background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

         .faq-card {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-card:hover {
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }
        
        .faq-header {
            background: #f8f9fa;
            padding: 20px;
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        
        .faq-header:hover {
            
        }
        
        .faq-body {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-body.show {
            max-height: 100%;
            padding: 20px;
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
        }
        
        .faq-icon.rotate {
            transform: rotate(180deg);
        }

           .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .section-white{
            background-color: var(--white);
        }

        .section-blue{
            background-color: var(--primary-blue);
        }

        .orange-text {
            color: var(--accent-orange);
        }

         .blue-text {
            color: var(--primary-blue);
        }