    /* General styles */
    body {
        background-color: #fafcff;
    }

    .mepr-form input[type="text"],
    .mepr-form input[type="email"],
    .mepr-form input[type="password"],
    .mepr-form select {
        width: 100%;
        padding: 10px 12px;
        height: auto;
        border: 1px solid #ddd !important;
        border-radius: 6px !important;
        margin-bottom: 10px;
        font-size: 0.9rem;
        transition: border-color 0.3s ease;
    }

    .mepr-form input:focus,
    .mepr-form select:focus {
        border-color: var(--k-orange) !important;
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 113, 43, 0.1);
    }

    .mepr-form-has-errors,
    .mp-form-row.mepr_bold.mepr_price {
        display: none;
    }

    select#mepr-address-country1 {
        height: 42px;
    }

    button.mp-hide-pw.hide-if-no-js {
        display: none;
    }

    .mp-form-label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
        display: block;
    }

    .mepr-form {
        padding: 20px;
        border-radius: 12px;
        background: white;

        max-width: 650px;
        margin: 0 auto;
    }

    .cc-error {
        color: #dc3545;
        font-size: 11px;
        margin-top: -8px;
        margin-bottom: 8px;
    }

    /* Two-column layout */
    .mepr-signup-form .mp-form-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .mepr-signup-form .mp-form-label,
    .mepr-signup-form .mp-form-input,
    .mepr-signup-form .mp-hide-pw,
    .mepr-signup-form .mepr-countries-dropdown {
        width: 48%;
    }

    /* Adjustments for specific elements */
    .mepr-price,
    .mepr_payment_method-wrapper,
    .mepr_tos,
    .mp-form-submit {
        flex-direction: column;
        width: 100%;
    }

    .mepr-payment-method {
        flex-direction: column;
        width: 100%;
    }

    .mepr-submit {
        background: linear-gradient(135deg, var(--k-orange), #e65d02ff);
        color: white;
        border: none;
        cursor: pointer;
        padding: 14px 28px;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(255, 113, 43, 0.3);
        width: 100%;
        margin-top: 15px;
    }

    .mepr-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 113, 43, 0.4);
    }

    /* Hero Section - More Compact */
    .trial-hero {
        background: linear-gradient(135deg, #ff844d 0%, #f76825ff 100%);
        color: white;
        padding: 30px 0 20px 0;
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
    }

    .trial-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
        opacity: 0.3;
    }

    .trial-hero-content {
        position: relative;
        z-index: 1;
    }

    .trial-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .trial-hero .lead {
        font-size: 1rem;
    }

    /* Benefits Cards - More Compact */
    .benefits-section {
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .benefits-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    /* Refined Dot-Style Benefit Items */
    .benefit-item {
        display: flex;
        align-items: start;
        margin-bottom: 15px;
        padding: 0;
        transition: transform 0.2s ease;
    }

    .benefit-item:last-child {
        margin-bottom: 0;
    }

    .benefit-item:hover {
        transform: translateX(4px);
    }

    /* Small Refined Dot Icon */
    .benefit-icon {
        width: 8px;
        height: 8px;
        background: linear-gradient(135deg, var(--k-orange), #e65d02ff);
        border-radius: 50%;
        margin-right: 12px;
        margin-top: 8px;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(255, 113, 43, 0.3);
    }

    .benefit-text h4 {
        margin: 0 0 4px 0;
        font-size: 0.95rem;
        color: #333;
        font-weight: 600;
    }

    .benefit-text p {
        margin: 0;
        color: #666;
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Trust Signals */
    .trust-badges {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #28a745;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .trust-badge i {
        font-size: 1.1rem;
    }

    /* Company Logos Mini */
    .mini-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        margin: 15px 0;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .mini-logos img {
        height: 26px;
        width: auto;
        opacity: 0.6;
        transition: opacity 0.3s ease;
    }

    .mini-logos img:hover {
        opacity: 1;
    }

    /* Progress Steps - More Compact */
    .progress-steps {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 20px 0;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--k-orange);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-size: 0.85rem;
    }

    .step-text {
        font-size: 0.85rem;
        font-weight: 500;
        color: #333;
    }

    .step-arrow {
        color: #ddd;
        font-size: 1.1rem;
    }

    /* Trial Details Box - More Compact */
    .benefits-section .mt-4 {
        margin-top: 1rem !important;
        padding: 15px !important;
    }

    .benefits-section .mt-4 h5 {
        font-size: 1rem;
        margin-bottom: 0.75rem !important;
    }

    .benefits-section .mt-4 .fw-semibold {
        font-size: 1.1rem;
    }

    .benefits-section .mt-4 small {
        font-size: 0.75rem;
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .trial-hero h1 {
            font-size: 1.75rem;
        }

        .benefits-section {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .trial-hero {
            padding: 25px 0 20px 0;
        }

        .trial-hero h1 {
            font-size: 1.5rem;
        }

        .trial-hero .lead {
            font-size: 0.9rem;
        }

        .mepr-form {
            padding: 18px;
        }

        .mepr-signup-form .mp-form-label,
        .mepr-signup-form .mp-form-input,
        .mepr-signup-form .mp-hide-pw,
        .mepr-signup-form .mepr-countries-dropdown {
            width: 100%;
        }

        .benefits-section {
            padding: 18px;
        }

        .benefit-item {
            margin-bottom: 12px;
        }

        .benefit-text h4 {
            font-size: 0.9rem;
        }

        .benefit-text p {
            font-size: 0.8rem;
        }

        .progress-steps {
            flex-direction: column;
            align-items: start;
            gap: 8px;
        }

        .step-arrow {
            transform: rotate(90deg);
            margin-left: 16px;
        }

        .mini-logos img {
            height: 22px;
        }

        .mepr-submit {
            font-size: 0.95rem;
            padding: 12px 24px;
        }
    }



    /* Testimonial */
    .testimonial {
        background: white;
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid var(--k-orange);
        margin: 25px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .testimonial-text {
        font-style: italic;
        color: #555;
        margin-bottom: 12px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .testimonial-author img {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-info strong {
        display: block;
        color: #333;
        font-size: 0.9rem;
    }

    .testimonial-info span {
        color: #666;
        font-size: 0.8rem;
    }

    /* Form container wrapper */
    .form-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Form header more compact */
    .mepr-form .text-center.mb-4 h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
    }

    .mepr-form .text-center.mb-4 p {
        font-size: 0.85rem;
    }

    .mepr-form .text-center.mt-4 {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
    }

    .mepr-form .text-center.mt-4 p {
        font-size: 0.8rem;
    }

    .cust-shadow {box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);}
