 
        :root {
            --brand-primary: #74d31d;
            --brand-dark: #5ca817;
            --text-dark: #1a1a1a;
            --text-muted: #6c757d;
            --bg-page: #f9fafb;
        }

    

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        /* --- NEW HERO SECTION DESIGN --- */
        .modern-hero {
            background-color: #ffffff;
            padding: 100px 0 80px;
            position: relative;
            border-bottom: 1px solid #eaeaea;
            /* Subtle dot pattern background */
            background-image: radial-gradient(#e5e5e5 1px, transparent 1px);
            background-size: 30px 30px;
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(116, 211, 29, 0.1);
            color: var(--brand-dark);
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .hero-title {
            font-weight: 700;
            font-size: 3.5rem;
            margin-bottom: 15px;
            background: -webkit-linear-gradient(45deg, #1a1a1a, #4a4a4a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- ACCORDION STYLING --- */
        .custom-accordion .accordion-item {
            border: 1px solid #eee;
            margin-bottom: 15px;
            border-radius: 12px !important;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
            transition: box-shadow 0.3s ease;
        }

        .custom-accordion .accordion-item:hover {
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }

        .custom-accordion .accordion-button {
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--text-dark);
            background: #fff;
            box-shadow: none;
        }

        .custom-accordion .accordion-button:not(.collapsed) {
            color: var(--brand-dark);
            background-color: #fcfdfa; /* Very slight tint */
            box-shadow: inset 0 -1px 0 #eee;
        }

        .accordion-body {
            padding: 2rem;
            font-size: 0.95rem;
            color: #444;
            background-color: #fff;
        }

        /* --- SIDEBAR STYLING --- */
        .sidebar-sticky {
            position: sticky;
            top: 2rem;
        }

        .contact-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            border: 1px solid #eee;
            text-align: center;
        }

        .contact-icon-lg {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 20px rgba(116, 211, 29, 0.3);
        }

        .contact-detail-row {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 1.5rem;
            text-align: left;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .contact-detail-row i {
            font-size: 1.5rem;
            color: var(--brand-dark);
            margin-right: 15px;
        }
    