     .lud-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
     .lud-container     h1 {
            font-size: 3.5rem;
            font-weight: 800;
            background: var(--g-branding);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

      .lud-container    h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--light-text);
            margin-bottom: 1rem;
            position: relative;
        }

       .lud-container   h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

     .lud-container     h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .lud-container  p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        /* Buttons */
        .lud-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .lud-btn-primary {
            background: var(--g-branding);
            color: var(--background);
        }

        .lud-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(150, 201, 61, 0.3);
        }

        .lud-btn-secondary {
            background: transparent;
            color: var(--branding);
            border: 2px solid var(--branding);
        }

        .lud-btn-secondary:hover {
            background: var(--branding);
            color: var(--background);
            transform: translateY(-2px);
        }

        /* Header */
        .lud-header {
            padding: 1rem 0;
            border-bottom: 1px solid var(--simple-color);
        }

        .lud-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lud-logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--branding);
            text-decoration: none;
        }

        .lud-nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .lud-nav-links a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .lud-nav-links a:hover {
            color: var(--branding);
        }

        /* Hero Section */
        .lud-hero {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .lud-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(150, 201, 61, 0.08) 0%, transparent 70%);
            z-index: -1;
        }

        .lud-hero-content {
            text-align:left;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .lud-hero-content span {
            font-weight:400;
            font-size:1.3rem;
            color:var(--light-text);
        }

        .lud-hero p {
            font-size: 0.9rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.8;
        }

        .lud-hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        /* Video Section */
        .lud-video-section {
            margin: 4rem 0;
            padding: 1rem;
            background: var(--card-bg);
            border-radius: 20px;
            border: 1px solid var(--simple-color);
        }

        .lud-video-wrapper {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
        }

        .lud-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .lud-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .lud-feature {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.4rem 7px;
            border-right: 5px dashed var(--simple-color);
            border-radius: 0px;
            transition: all 0.3s ease;
        }

        .lud-feature:hover {
            transform: translateY(-5px);
            border-left: 5px dashed var(--simple-color);
            border-right: 1px dashed var(--simple-color);
        }

        .lud-feature i {
            font-size: 7rem;
            color: var(--branding);
        }

        /* Image Placeholders */
        .lud-img {
            width: 100%;
            height: 400px;
            background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--branding);
            font-size: 4rem;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .lud-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           /* background: rgba(24, 26, 20, 0.7); */
        }

        .lud-img i {
            position: relative;
            z-index: 1;
        }

        /* How It Works Section */
        .lud-process {
            padding: 6rem 0;
        }

        .lud-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .lud-section-header p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        .lud-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .lud-step {
             display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.4rem 7px;
            border-radius: 0px;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            border-left:5px dashed var(--simple-color);
            transition: all 0.3s ease;
        }
        
         .lud-step p{
             text-align:left;
             font-size:0.85rem;
        }

        .lud-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }

        .lud-step:hover {
            transform: translateY(-10px);
        }

        .lud-step-icon {
            background:transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--branding);
            font-size: 8rem;
        }

        .lud-step-number {
            position: absolute;
            top: -15px;
            right: 20px;
            border:1px solid var(--card-bg);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--branding);
            color: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 3rem;
        }

        /* Fee Calculator */
        .lud-calculator {
            padding: 3rem 8px;
            max-width:600px;
            margin: 0 auto;
            border-left:5px dashed var(--simple-color);
        }

        .lud-calc-form {
            background: var(--card-bg);
            border: 1px solid var(--simple-color);
            border-radius: 20px;
            padding: 1rem 8px;
            max-width: 400px;
            margin: 0 auto;
        }

        .lud-form-group {
            margin-bottom: 2rem;
        }

        .lud-form-label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.8rem;
            font-weight: 600;
            color: var(--light-text);
        }

        .lud-form-input {
            width: 100%;
            padding: 1.2rem 1.5rem;
            border-radius: 12px;
            border: 2px solid var(--simple-color);
            background: var(--background);
            color: var(--light-text);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .lud-form-input:focus {
            outline: none;
            border-color: var(--branding);
            box-shadow: 0 0 0 4px rgba(150, 201, 61, 0.1);
        }

        .lud-calc-result {
            margin-top: 2rem;
            padding: 2rem;
            background: rgba(150, 201, 61, 0.05);
            border: 1px solid var(--branding);
            border-radius: 12px;
            display: none;
        }

        .lud-result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid var(--simple-color);
        }

        .lud-result-item:last-child {
            border-bottom: none;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--branding);
        }

        .lud-currency {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }

        /* Benefits Section */
        .lud-benefits {
            padding: 6rem 0;
        }

        .lud-benefit-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .lud-benefit-card {
            background: var(--card-bg);
            border: 1px solid var(--simple-color);
            border-radius: 16px;
            padding: 2.5rem;
            transition: all 0.3s ease;
        }

        .lud-benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            border-color: var(--branding);
        }

        .lud-benefit-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--simple-color);
        }

        .lud-benefit-header i {
            font-size: 2.5rem;
            color: var(--branding);
        }

        .lud-benefit-list {
            list-style: none;
        }

        .lud-benefit-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(150, 201, 61, 0.02);
            border-radius: 8px;
        }

        .lud-benefit-list li i {
            color: var(--branding);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lud-container {
                padding: 0 15px;
            }

         .lud-container   h1 {
                font-size: 2.5rem;
            }

         .lud-container   h2 {
                font-size: 2rem;
            }

            .lud-hero {
                padding: 4rem 0;
            }

            .lud-hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .lud-features {
                grid-template-columns: 1fr;
            }

            .lud-steps {
                grid-template-columns: 1fr;
            }

            .lud-benefit-grid {
                grid-template-columns: 1fr;
            }

            .lud-nav-links {
                display: none;
            }

            .lud-img {
                height: 250px;
            }
        }