   :root {
        --primary: #72ae44;
        --secondary: #5a8a37;
        --accent: #ff914d;
        --light: #f8f9fa;
        --dark: #2d4a1f;
        --success: #4caf50;
        --gradient: linear-gradient(135deg, #72ae44 0%, #5a8a37 100%);
        --accent-gradient: linear-gradient(135deg, #ff914d 0%, #ffab76 100%);
        --light-green: #f0f7e9;
        --soft-orange: #fff4ec;
        --white: #ffffff;
        --text-muted2: #5e6a63;
        --border-soft: rgba(114, 174, 68, 0.12);
        --shadow-soft: 0 10px 30px rgba(45, 74, 31, 0.08);
        --shadow-card: 0 15px 40px rgba(114, 174, 68, 0.12);
    }

   

    .srv-section-pd {
        padding: 40px 0;
    }

    .srv-txt-gradient {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .bg-gradient-main {
        background: var(--gradient);
    }

    .bg-soft-green {
        background: var(--light-green);
    }

    .bg-soft-orange {
        background: var(--soft-orange);
    }

    .bg-pattern-hero {
        position: relative;
        background:
            radial-gradient(circle at top right, rgba(255, 145, 77, 0.18), transparent 28%),
            radial-gradient(circle at bottom left, rgba(114, 174, 68, 0.20), transparent 30%),
            linear-gradient(135deg, #f7fbf3 0%, #ffffff 100%);
    }

    .bg-pattern-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(114, 174, 68, .04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(114, 174, 68, .04) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    .srv-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(114, 174, 68, 0.12);
        border: 1px solid rgba(114, 174, 68, 0.18);
        color: var(--secondary);
        padding: 10px 18px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .srv-hero-title {
        font-size: 3.2rem;
        line-height: 1.15;
        font-weight: 800;
        color: var(--dark);
    }

    .srv-hero-subtitle {
        font-size: 1.15rem;
        line-height: 1.8;
        color: var(--text-muted2);
        max-width: 95%;
    }

   
    .btn-accent {
        background: var(--accent-gradient);
        color: #fff;
        border: none;
        border-radius: 50px;
        padding: 14px 28px;
        font-weight: 700;
        box-shadow: 0 10px 25px rgba(255, 145, 77, 0.25);
        transition: all 0.3s ease;
    }

    .btn-accent:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .lead-form-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 26px;
        padding: 32px;
        box-shadow: var(--shadow-card);
        border: 1px solid rgba(255, 255, 255, 0.5);
        position: relative;
        z-index: 2;
    }

    .lead-form-card .form-title {
        color: var(--dark);
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .lead-form-card .form-subtitle {
        color: var(--text-muted2);
        margin-bottom: 24px;
    }

    .form-control,
    .form-select {
        min-height: 52px;
        border-radius: 14px;
        border: 1px solid #dce8d2;
        padding: 12px 16px;
        box-shadow: none !important;
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary);
    }

    .mini-highlight {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .mini-highlight i {
        width: 42px;
        height: 42px;
        background: var(--light-green);
        color: var(--secondary);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .metric-strip {
        margin-top: 30px;
        background: #fff;
        padding: 18px 24px;
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .metric-item {
        text-align: center;
    }

    .metric-item h4 {
        font-size: 1.7rem;
        margin-bottom: 4px;
        color: var(--secondary);
        font-weight: 800;
    }

    .metric-item p {
        margin-bottom: 0;
        color: var(--text-muted2);
        font-size: 14px;
    }

    .section-title {
        font-size: 2.5rem;
        color: var(--dark);
        font-weight: 800;
        margin-bottom: 16px;
    }

    .section-subtitle {
        color: var(--text-muted2);
        font-size: 1.05rem;
        max-width: 760px;
        margin: 0 auto 20px;
        line-height: 1.8;
    }

    .custom-card {
        background: #fff;
        border-radius: 22px;
        padding: 28px;
        height: 100%;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--border-soft);
        transition: all 0.3s ease;
    }

    .custom-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(45, 74, 31, 0.12);
    }

    .icon-box {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        font-size: 26px;
        color: #fff;
        background: var(--gradient);
        box-shadow: 0 10px 25px rgba(114, 174, 68, 0.24);
    }

    .icon-box.orange {
        background: var(--accent-gradient);
        box-shadow: 0 10px 25px rgba(255, 145, 77, 0.24);
    }

    .content-box {
        background: #fff;
        border-radius: 24px;
        padding: 25px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--border-soft);
    }

    .content-box p {
        color: #44534a;
        line-height: 1.9;
        margin-bottom: 0;
    }

    .check-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        color: #44534a;
        line-height: 1.8;
    }

    .check-list li i {
        color: var(--success);
        margin-top: 5px;
        font-size: 16px;
    }

    .warning-list {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
    }

    .warning-list li {
        padding: 8px 0;
        border-bottom: 1px dashed rgba(45, 74, 31, 0.12);
        color: #4b5b4e;
        font-weight: 600;
    }

    .warning-list li:last-child {
        border-bottom: none;
    }

    .warning-list li::before {
        content: "•";
        color: var(--accent);
        font-size: 24px;
        margin-right: 12px;
        vertical-align: middle;
    }

    .feature-band {
        background: var(--gradient);
        color: #fff;
        border-radius: 28px;
        padding: 40px;
        box-shadow: var(--shadow-card);
    }

    .feature-band p {
        color: rgba(255, 255, 255, 0.92);
        margin-bottom: 0;
        line-height: 1.9;
    }

    .program-badge-card {
        background: #ffffff;
        border-radius: 22px;
        padding: 22px 24px;
        box-shadow: var(--shadow-soft);
        border-left: 6px solid var(--accent);
    }

    .program-badge-card h5 {
        margin-bottom: 8px;
        color: var(--dark);
        font-size: 1.2rem;
    }

    .program-badge-card p {
        margin-bottom: 0;
        color: var(--text-muted2);
    }

    .cta-box {
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 20%),
            var(--gradient);
        padding: 60px 40px;
        border-radius: 28px;
        color: #fff;
        text-align: center;
        box-shadow: var(--shadow-card);
    }

    .cta-box h2 {
        font-size: 2.6rem;
        margin-bottom: 18px;
    }

    .cta-box p {
        font-size: 1.08rem;
        color: rgba(255, 255, 255, 0.92);
        max-width: 820px;
        margin: 0 auto 28px;
        line-height: 1.9;
    }

    .floating-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(10px);
        opacity: 0.15;
        z-index: 0;
    }

    .shape-1 {
        width: 140px;
        height: 140px;
        background: var(--accent);
        top: 100px;
        right: 80px;
    }

    .shape-2 {
        width: 180px;
        height: 180px;
        background: var(--primary);
        bottom: 60px;
        left: 20px;
    }

    .section-tag {
        display: inline-block;
        padding: 8px 18px;
        border-radius: 999px;
        background: rgba(114, 174, 68, 0.12);
        color: var(--secondary);
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 14px;
    }

    .content-hero-image {
        position: relative;
        z-index: 2;
    }

    .content-hero-image .image-card {
        background: #fff;
        border-radius: 28px;
        padding: 20px;
        box-shadow: var(--shadow-card);
        border: 1px solid rgba(114, 174, 68, 0.12);
    }

    .content-hero-image img {
        width: 100%;
        border-radius: 22px;
        object-fit: cover;
        min-height: 25rem;
    }

    .trusted-points {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 22px;
    }

    .trusted-pill {
        padding: 10px 16px;
        background: #fff;
        border: 1px solid #d8e8ce;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
        box-shadow: 0 4px 15px rgba(114, 174, 68, 0.07);
    }

    @media (max-width: 991px) {
        .srv-hero-title {
            font-size: 2.4rem;
        }

        .metric-strip {
            grid-template-columns: 1fr;
        }

        .content-hero-image img {
            min-height: auto;
        }

        .section-title {
            font-size: 2rem;
        }

        .cta-box h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 767px) {
        .srv-section-pd {
            padding: 25px 0;
        }

        .srv-hero-title {
            font-size: 2rem;
        }

        .lead-form-card {
            padding: 24px;
        }

        .content-box,
        .custom-card {
            padding: 15px;
        }

        .cta-box {
            padding: 40px 24px;
        }
    }