        :root {     
            --primary:#ffd374;
            --primary-light:#f0ecb3; 
            --primary-dark: #ffd76a; 
            --secondary: #ffd76a;
            --dark: #000000;
            --light: #000000;
            --gray: #94a3b8;
            --gray-light: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Sora", sans-serif;
            font-optical-sizing: auto;
            font-weight: 600;
            font-style: normal;
        }


        
        body {
            background-color: #0a0a0a;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .navbar-custom {
            background: rgba(0, 0, 0, 0.9) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 70px;
            padding: 0 15px !important;
        }
        
        .navbar-container {
            width: 100%;
            max-width: none;
            padding: 0;
            margin: 0;
        }
        
        .logo-box {
            width: 36px;
            height: 36px;
            background-color: var(--primary);
            color: var(--dark);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            border-radius: 4px;
            margin-right: 8px;
        }
        
        .brand-text {
            color: var(--primary);
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .nav-link-custom {
            color: var(--primary-light) !important;
            padding: 8px 12px !important;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.2s ease;
        }
        
        .nav-link-custom:hover {
            color: var(--primary) !important;
        }
        
        .btn-login {
            color: var(--primary-light);
            border: 1px solid var(--primary-light);
            padding: 6px 12px;
            font-size: 0.9rem;
            margin-right: 8px;
            border-radius: 4px;
        }
        
        .btn-signup {
            background-color: var(--primary);
            color: var(--dark);
            padding: 6px 12px;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 4px;
        }

        .btn-signup:hover {
            background: linear-gradient(to right, #ffd76a, #ffd374);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--primary-light);
            padding: 4px 8px;
        }
        
        .navbar-brand {
            margin-right: 0;
            padding: 5px 0;
        }
        
        .nav-center {
            margin: 0 auto;
        }
        
        .nav-buttons {
            margin-left: auto;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('img/hero-bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 5% 80px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            opacity: 0.9;
            color: var(--primary-light) !important;
        }
        
        .stats-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        
        .stat-item {
            display: flex;
            align-items: left;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            
        }
        
        

        .stat-icon-wrapper {
      
      color: #ffd374;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-right: 15px;
      flex-shrink: 0;
      border: 1px solid rgba(255, 211, 116, 0.4);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
        
        .stat-icon {
            color: #ffd374;
            font-size: 1.2rem;
        }
        
        .stat-value {
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary);
        }
        
        .stat-label {
            display: block;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .btn-primary-custom, .btn-outline-custom {
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-primary-custom {
            background: var(--primary);
            color: var(--dark);
            border: none;
        }
        
        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-primary-custom:hover {
            background: #ffc747;
            transform: translateY(-2px);
        }
        
        .btn-outline-custom:hover {
            background: rgba(255, 213, 112, 0.1);
            transform: translateY(-2px);
        }
        
        .trust-line {
            margin-top: 3rem;
            text-align: center;
        }
        
        .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            margin: 1rem auto;
            width: 80%;
        }
        
        .trust-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .trust-tags {
            display: block;
            color: var(--primary);
            font-weight: 600;
            margin-top: 5px;
        }
        
        /* Experience Section */
        .experience-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, rgba(18, 18, 18, 0.95), rgba(25, 25, 35, 0.98));
        }
        
        .section-header {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .normal-text {
            color: white;
        }
        
        .highlight-text {
            color: var(--primary);
        }
        
        .description-text {
            text-align: center;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 4rem;
        }
        
        .feature-card {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 213, 112, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .card-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .card-description {
            color: var(--primary-light);
            font-size: 1rem;
        }
        
        .ai-card {
            background: rgba(40, 40, 50, 0.7);
            border-radius: 12px;
            border: 1px solid rgba(255, 213, 112, 0.1);
            transition: all 0.3s;
            height: 100%;
        }
        
        .ai-card:hover {
            background: rgba(50, 50, 60, 0.8);
            border-color: var(--primary);
        }
        
        .ai-card .card-icon {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .ai-card .card-title {
            font-size: 1.2rem;
            color: white;
        }
        
        .ai-card .card-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: linear-gradient(to bottom, rgba(25, 25, 35, 0.98), rgba(18, 18, 18, 0.95));
        }
        
        .pricing .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }
        
        .pricing .section-header p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto 3rem;
        }
        
        .pricing-card {
            background: rgba(30, 30, 40, 0.7);
            border-radius: 16px;
            padding: 2rem;
            position: relative;
            border: 1px solid rgba(255, 213, 112, 0.1);
            transition: all 0.3s;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            transform: scale(1.03);
        }
        
        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.8rem;
        }
        
        .card-icon-top {
            margin-bottom: 1.5rem;
        }
        
        .card-icon-top i {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .pricing-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .pricing-header p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
        }
        
        .price {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin: 1rem 0;
        }
        
        .roi-box {
            background: rgba(255, 213, 112, 0.1);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            border: 1px solid rgba(255, 213, 112, 0.2);
        }
        
        .roi-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .roi-period {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .roi-total {
            font-size: 1rem;
            font-weight: 600;
            color: white;
            margin-top: 5px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .pricing-features li {
            padding: 8px 0;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-features li i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .cta-button {
            display: block;
            text-align: center;
            background: var(--primary);
            color: var(--dark);
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background: #ffc747;
            transform: translateY(-2px);
        }
        
        .custom-solution-box {
            background: rgba(30, 30, 40, 0.7);
            border-radius: 16px;
            border: 1px solid rgba(255, 213, 112, 0.2);
            max-width: 800px;
        }
        
        /* Compliance Section */
        .card {
            background: rgba(30, 30, 40, 0.7);
            border: 1px solid rgba(255, 213, 112, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            transition: all 0.3s;
            height: 100%;
        }
        
        .card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .card-icon {
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-light);
            margin-bottom: 0.5rem;
        }
        
        .card-content {
            color: var(--primary-light);
            font-size: 0.95rem;
        }
        
        /* Trust Section */
        .main-heading {
            color: var(--primary-light);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .content-text {
            color: var(--primary-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* CTA Section */
        .text-box {
            background: rgba(15, 15, 15, 0.8);
            border: 1px solid rgba(255, 211, 116, 0.3);
            border-radius: 12px;
            padding: 3rem 2rem;
            text-align: center;
            width: 95%;
            max-width: 1000px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
            margin: 100px auto 50px;
        }

   @media (max-width: 991.98px) {
        #navbarContent {
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 1rem;
            margin-top: 10px;
            border-radius: 0 0 8px 8px;
            border: 1px solid rgba(255, 213, 112, 0.1);
        }
        
        .nav-center .nav-item {
            margin: 0.5rem 0;
        }
        
        .nav-buttons {
            margin-top: 1rem;
            justify-content: center;
            width: 100%;
        }
    }

        
        .text-box h2 {
            font-size: 2rem;
            color: #f0ecb3;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .text-box p {
            font-size: 1.1rem;
            color: #ffd570;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-create-account {
            background: linear-gradient(to right, #ffd374, #ffd76a);
            color: #1a1a1a;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 211, 116, 0.3);
        }
        
        .btn-create-account:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 211, 116, 0.4);
            background: linear-gradient(to right, #ffd76a, #ffd374);
        }
        
        /* Footer */
        footer {
            background-color: #0a0a0a;
            color: white;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 213, 112, 0.1);
        }
        
        .footer-about {
            margin-bottom: 2rem;
        }
        
        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-logo i {
            color: var(--primary);
        }
        
        .footer-about p {
            opacity: 0.7;
            margin-bottom: 1.5rem;
            color: var(--primary-light);
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
        }
        
        .contact-info li {
            margin-bottom: 0.5rem;
            color: var(--primary-light);
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .footer-links h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            
        }
          .bg-black {
        background-color: #000000 !important;
    }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.875rem;
            color: var(--primary-light);
            margin: 0;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }
        
        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }
        
        .footer-bottom-links a:hover {
            color: white;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-center {
                position: static;
                transform: none;
                margin: 1rem 0;
            }
            
            .hero-title {
                font-size: 2.8rem;
            }

            
            
            .stats-row {
                flex-direction: column;
                gap: 1rem;
            }
            
            .stat-item {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 5% 60px;
                min-height: auto;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-header {
                font-size: 2rem;
            }
            
            .feature-card {
                margin-bottom: 1.5rem;
            }
            
            .text-box {
                padding: 2rem 1.5rem;
                margin: 50px auto;
            }
            
            .text-box h2 {
                font-size: 1.7rem;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .btn-login, .btn-signup {
                padding: 5px 10px;
                font-size: 0.8rem;
            }
            
            .hero-title {
                font-size: 1.8rem;
            }
            
            .btn-primary-custom, .btn-outline-custom {
                padding: 10px 20px;
                font-size: 1rem;
                width: 100%;
                margin-bottom: 1rem;
            }
            
            .pricing-card {
                margin-bottom: 2rem;
            }
        }
    
        .feature-card {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 10px;
            padding: 1.25rem;
            border: 1px solid rgba(255, 213, 112, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .card-icon {
            font-size: 1.5rem;
            color: #ffd570;
            margin-bottom: 0.75rem;
            text-align: left;
        }
        
        .card-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
            text-align: left;
        }
        
        .card-description {
            color: #ffd76a;
            font-size: 0.85rem;
            margin-bottom: 0;
            line-height: 1.4;
            text-align: left;
        }
        
        /* Compact spacing */
        .compact-row {
            margin-left: -6px;
            margin-right: -6px;
        }
        
        .compact-row > .col {
            padding-left: 6px;
            padding-right: 6px;
        }

          .wealth-heading {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .wealth-text {
            font-size: 1.4rem;
            text-align: center;
            line-height: 1.7;
            margin-bottom: 1.8rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: #ffd76a;
        }
        
        @media (max-width: 768px) {
            .wealth-heading {
                font-size: 2.4rem;
            }
            
            .wealth-text {
                font-size: 1.2rem;
            }
        }

         .feature-card {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 213, 112, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .card-icon {
            font-size: 3rem;
            color: #ffd570;
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .card-description {
            color: #ffd76a;
            font-size: 1.1rem;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        /* Center the 3 cards */
        .three-cards-row {
            justify-content: center;
        }

        .mission-section {
            padding: 4rem 0;
            text-align: center;
            background-color: #0a0a0a;
            color: white;
        }
        
        .mission-heading {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #f0ecb3;
        }
        
        .mission-text {
            font-size: 1.4rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: #ffd76a;
        }
        
        .mission-button {
            background: linear-gradient(to right, #ffd374, #ffd76a);
            color: #1a1a1a;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 211, 116, 0.3);
        }
        
        .mission-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 211, 116, 0.4);
            background: linear-gradient(to right, #ffd76a, #ffd374);
        }
        
        @media (max-width: 768px) {
            .mission-heading {
                font-size: 2.2rem;
            }
            
            .mission-text {
                font-size: 1.2rem;
            }
            
            .mission-button {
                padding: 12px 30px;
                font-size: 1.1rem;
            }
        }

         .tech-card {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 213, 112, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .tech-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .tech-card-icon {
            font-size: 2rem;
            color: #ffd570;
            margin-bottom: 1rem;
        }
        
        .tech-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: white;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-list li {
            color: #ffd76a;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        .feature-list i {
            color: #ffd570;
            margin-right: 0.8rem;
            margin-top: 0.2rem;
            min-width: 20px;
        }
        
        

         .tech-section {
            padding: 4rem 0;
            text-align: center;
            background-color: #0a0a0a;
            color: white;
        }
        
        .tech-heading {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #f0ecb3;
        }
        
        .tech-text {
            font-size: 1.4rem;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: #ffd76a;
        }
        
         .card-icon {
            font-size: 1.8rem;
            color: #ffd570;
            margin-right: 1rem;
            min-width: 40px;
        }
        
        .card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #f0ecb3;
        }
        
        .card-content {
            color: #ffd76a;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        .card-icon {
    font-size: 2rem;
    color: #ffd570;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f0ecb3;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    color: #ffd76a;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-list i {
    color: #ffd570;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    min-width: 20px;
}
        
        .side-by-side-cards {
            display: flex;
            gap: 20px;
        }
        
        .side-by-side-cards > div {
            flex: 1;
        }
        
        @media (max-width: 768px) {
            .side-by-side-cards {
                flex-direction: column;
                gap: 15px;
            }
        }

         .compact-primary-btn {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary-dark);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            max-width: 150px;
        }
        
        .compact-primary-btn:hover {
            transform: translateY(-3px);
            
        }
        
        .compact-primary-btn:active {
            transform: translateY(1px);
        }

 .benefit-box {
            background: rgba(30, 30, 40, 0.6);
            border-radius: 10px;
            padding: 1.5rem;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            
        }
        
        .benefit-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        
        
        .benefit-title {
            color: #f0ecb3;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: left;
            font-size: 1.4rem;
        }
        
        .benefit-description {
            color: #ffc747;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            text-align: left;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }
        
        .feature-list li {
            margin-bottom: 0.7rem;
            display: flex;
            align-items: flex-start;
        }
        
        .feature-icon {
            color: var(--primary-dark);
            margin-right: 0.7rem;
            font-size: 1rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }
        
        .feature-text {
            color: #ffc747;
            line-height: 1.4;
            font-size: 0.95rem;
        }
        
        @media (max-width: 992px) {
            .benefit-box {
                margin-bottom: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .benefit-box {
                padding: 1.2rem;
            }
            
            .benefit-title {
                font-size: 1.3rem;
            }
        
        }

        
        
        