    .newsletter-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-self: center;
        position: relative;
    }

    /* Inner Container */
    .newsletter-container {
        display: flex;
        min-height: 294px;
        flex-direction: row;
        align-items: center;
        border-radius: 16px;
        background-color: var(--e-global-color-theme_color_bg_color, #000);
        background-position: top left;
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* Inner Container Content */
    .newsletter-container .newsletter-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 50px;
        justify-content: space-between;
    }

    /* Heading Wrapper */
    .newsletter-heading-wrapper {
        display: flex;
        flex: 1;
        justify-content: center;
        align-items: center;
    }

    /* Heading Element */
    .newsletter-heading {
        width: 375px;
        max-width: 375px;
    }

    .newsletter-heading h2 {
        margin: 0;
        color: #fff;
        text-align: center;
    }

    /* Form Wrapper */
    .newsletter-form-wrapper {
        display: flex;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
    }

    /* Cyberpunk Email Form */
    .cyberpunk-email-form {
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
    }

    .email-input-group {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    .input-button-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-radius: 16px;
        overflow: visible;
        background: rgba(20, 20, 30, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 2px solid rgba(170, 255, 0, 0.3);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(170, 255, 0, 0.1);
        transition: all 0.3s ease;
        padding: 0.5rem;
    }

    .input-button-wrapper:focus-within {
        border-color: rgba(170, 255, 0, 0.6);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(170, 255, 0, 0.2),
            inset 0 1px 0 rgba(170, 255, 0, 0.2);
    }

    .email-input-container {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 1.125rem 1.5rem;
        background: rgba(0, 0, 0, 0.4);
        position: relative;
        border-radius: 12px;
    }

    .email-icon {
        color: #aaff00;
        font-size: 1.2rem;
        flex-shrink: 0;
        text-shadow: 0 0 8px rgba(170, 255, 0, 0.5);
    }

    .email-input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: rgba(255, 255, 255, 0.95);
        font-size: 1rem;
        font-weight: 400;
        padding: 0;
        width: 100%;
        letter-spacing: 0.3px;
    }

    .email-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .email-input:focus {
        color: rgba(255, 255, 255, 1);
    }

    .get-started-btn {
        padding: 0.75rem 1.5rem;
        background: rgba(0, 0, 0, 0.8);
        color: #aaff00;
        border: 2px solid rgba(170, 255, 0, 0.5);
        border-radius: 25px;
        font-size: 0.875rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        letter-spacing: 0.5px;
        height: 50px;
        text-transform: uppercase;
        position: relative;
        overflow: hidden;
        text-shadow: 0 0 10px rgba(170, 255, 0, 0.5);
        margin: 0.5rem;
        align-self: center;
    }

    .get-started-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(170, 255, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .get-started-btn:hover::before {
        left: 100%;
    }

    .get-started-btn:hover {
        background: rgba(0, 0, 0, 0.9);
        color: #aaff00;
        border-color: #aaff00;
        box-shadow: 0 0 20px rgba(170, 255, 0, 0.6),
            0 0 40px rgba(170, 255, 0, 0.4);
        text-shadow: 0 0 15px rgba(170, 255, 0, 0.8);
        transform: translateY(-2px);
    }

    .get-started-btn:hover i {
        transform: translateX(3px);
    }

    .get-started-btn i {
        transition: transform 0.3s ease;
        font-size: 1.1rem;
    }

    .get-started-btn:active {
        transform: translateY(0);
    }

    .consent-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding-left: 0.5rem;
    }

    .consent-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        cursor: pointer;
        accent-color: #aaff00;
        flex-shrink: 0;
    }

    .consent-checkbox label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        line-height: 1.5;
        cursor: pointer;
        user-select: none;
    }

    .consent-checkbox .highlight-text {
        color: #aaff00;
        font-weight: 500;
        text-shadow: 0 0 8px rgba(170, 255, 0, 0.5);
    }

    /* Tablet Responsive - max-width: 1279px */
    @media (max-width: 1279px) {
        .newsletter-section {
            padding-left: 30px;
            padding-right: 30px;
        }

        .newsletter-container {
            min-height: 250px;
            padding-top: 40px;
            padding-bottom: 40px;
            background-position: -57px 0px;
        }

        .newsletter-container .newsletter-inner {
            gap: 30px;
        }

        .newsletter-heading {
            width: 400px;
            max-width: 400px;
        }
    }

    /* Mobile Responsive - max-width: 767px */
    @media (max-width: 767px) {
        .newsletter-section {
            padding-left: 20px;
            padding-right: 20px;
            width: 90%;
        }

        .newsletter-container {
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            background-position: center !important;
        }

        .newsletter-container .newsletter-inner {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .newsletter-heading-wrapper {
            justify-content: center;
        }

        .newsletter-heading h2 {
            text-align: center;
        }

        .newsletter-form-wrapper {
            justify-content: center;
            width: 100%;
        }

        .input-button-wrapper {
            flex-direction: column;
            border-radius: 16px;
            padding: 0.5rem;
        }

        .email-input-container {
            border-radius: 12px;
            width: 80%;
        }

        .get-started-btn {
            border-radius: 25px;
            width: 100%;
            justify-content: center;
            margin: 0;
        }

        .get-started-btn:hover {
            border-color: #aaff00;
        }
    }