
        :root {
            --brand-color: #74d31d;
            --brand-hover: #62b516;
            --text-black: #000000;
            --bg-light: #f9fdf7;
        }

      

        h1, h2, h3, h4, h5 {
            font-family: 'Poppins', sans-serif;
            color: var(--text-black);
        }

        /* Custom Header Styling */
        .page-header {
            background-color: var(--brand-color);
            background-image: linear-gradient(135deg, #74d31d 0%, #5ca817 100%);
            padding: 80px 0 100px;
            color: #ffffff;
            margin-bottom: -50px; /* Overlap effect */
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        }

        /* Card Styling */
        .policy-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            background: #fff;
            margin-bottom: 2rem;
            transition: transform 0.2s ease;
        }
        
        .policy-card:hover {
            transform: translateY(-2px);
        }

        .icon-box {
            width: 45px;
            height: 45px;
            background-color: rgba(116, 211, 29, 0.15);
            color: var(--brand-color); /* Darker green for icon visibility */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-right: 15px;
            font-size: 1.5rem;
        }

        /* Sidebar Styling */
        .contact-sidebar {
            position: sticky;
            top: 2rem;
        }
        
        .contact-card {
            background: #fff;
            border-radius: 15px;
            border-top: 5px solid var(--brand-color);
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        }

        .btn-brand {
            background-color: var(--brand-color);
            color: #fff;
            font-weight: 600;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-brand:hover {
            background-color: var(--brand-hover);
            color: #fff;
            box-shadow: 0 5px 15px rgba(116, 211, 29, 0.4);
        }

        /* Lists */
        .check-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 10px;
        }
        .check-list li::before {
            content: "\F26A"; /* Bootstrap Icon Check */
            font-family: "bootstrap-icons";
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--brand-color);
            font-weight: bold;
        }
    