     /* Custom Global Trust Styles */
        .global-trust-hero {
            background: linear-gradient(135deg, #f8ffe6 0%, #e6f7ff 100%);
        }

        .global-trust-title span {
            color: #8CD801;
        }

        .hero-list li {
            background-color: rgba(140, 216, 1, 0.1);
            color: #333;
            transition: all 0.3s ease;
        }

        .hero-list li:hover {
            background-color: rgba(140, 216, 1, 0.2);
            transform: translateY(-3px);
        }

        .hero-list i {
            color: #8CD801;
            margin-right: 8px;
        }

        .accreditation-card {
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            overflow: hidden;
        }

        .accreditation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #8CD801;
        }

        .accreditation-card h3 {
            color: #8CD801;
        }

        .standards-list li {
            padding: 12px 15px;
            margin-bottom: 8px;
            list-style: none;
            border-left: 4px solid #8CD801;
            background-color: #f8f8f8;
            transition: all 0.3s ease;
        }

        .standards-list li:hover {
            background-color: #f0f0f0;
            padding-left: 20px;
        }

        .standards-list i {
            color: #FFCC00;
            margin-right: 10px;
        }

        .compliance-section {
            background-color: #f9f9f9;
            border-top: 1px solid #e0e0e0;
            border-bottom: 1px solid #e0e0e0;
        }

        .trust-badge {
            width: 80px;
            height: 80px;
            background-color: #8CD801;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 24px;
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .trust-item:hover .trust-badge {
            background-color: #000;
            transform: scale(1.1);
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(140, 216, 1, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(140, 216, 1, 0); }
            100% { box-shadow: 0 0 0 0 rgba(140, 216, 1, 0); }
        }

        .highlight-box {
            border: 2px solid #8CD801;
            border-radius: 20px;
            padding: 30px;
            transition: all 0.3s ease;
            background-color: white;
        }

        .highlight-box:hover {
            box-shadow: 0 10px 30px rgba(140, 216, 1, 0.1);
            transform: translateY(-5px);
        }
          /* Accreditation Section Styling */
    .accreditation-section {
        background: linear-gradient(135deg, #8ed801 0%, #00a8e8 100%);
        position: relative;
        overflow: hidden;
        padding: 80px 0;
    }

    .accreditation-section .section-title {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    }

    .accreditation-section .divider {
        width: 80px;
        height: 4px;
        background: #ffcc00;
        margin: 0 auto 30px;
    }

    .accreditation-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: 100%;
        position: relative;
        overflow: hidden;
        border: 1px solid #e0e0e0;
    }

    .accreditation-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #8ed801, #ffcc00);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .accreditation-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        border-color: #8ed801;
    }

    .accreditation-card:hover::before {
        opacity: 1;
    }

    .trust-badge {
        width: 70px;
        height: 70px;
        background:linear-gradient(135deg, #ffcc00, #e6b800) !important;
        /*background: linear-gradient(135deg, #8ed801, #6bb300);*/
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 24px;
        margin-right: 20px;
        flex-shrink: 0;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .accreditation-card:hover .trust-badge {
        background: linear-gradient(135deg, #8ed801, #6bb300) !important;
        transform: scale(1.1);
    }

    .accreditation-card h3 {
        color: #ffcb00;
        font-weight: 600;
        margin-bottom: 10px;
        transition: color 0.3s ease;
    }

    .accreditation-card:hover h3 {
        color: #6bb300;
    }

    .accreditation-card p {
        color: #555;
        margin-bottom: 15px;
    }

    .accreditation-tag {
        display: inline-block;
        padding: 4px 12px;
        background: #f0f0f0;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-right: 8px;
        margin-bottom: 8px;
        color: #555;
    }

    /* Why Compliance Matters Section */
    .compliance-matters-section {
        padding: 80px 0;
        background-color: #f9f9f9;
    }

    .compliance-matters-section .section-title {
        color: #333;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .compliance-highlight-box {
        background: white;
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid #e0e0e0;
        transition: all 0.3s ease;
    }

    .compliance-highlight-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border-color: #8ed801;
    }

    .compliance-highlight-box .title {
        color: #8ed801;
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .compliance-feature {
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .compliance-feature:hover {
        transform: translateY(-5px);
    }

    .feature-1 {
        background-color: #e8f7cc;
    }

    .feature-2 {
        background-color: #fff5cc;
    }

    .feature-3 {
        background-color: #e6f7ff;
    }

    .feature-4 {
        background-color: #f0e8ff;
    }

    .compliance-feature i {
        font-size: 36px;
        margin-bottom: 15px;
        display: block;
    }

    .feature-1 i {
        color: #8ed801;
    }

    .feature-2 i {
        color: #ffcc00;
    }

    .feature-3 i {
        color: #00a8e8;
    }

    .feature-4 i {
        color: #9c6bff;
    }

    .compliance-feature h5 {
        color: #333;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .compliance-btn {
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin: 10px;
        display: inline-block;
    }

    .btn-primary-compliance {
        background: #8ed801;
        color: white;
        box-shadow: 0 4px 8px rgba(142, 216, 1, 0.3);
    }

    .btn-primary-compliance:hover {
        background: #7bc800;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(142, 216, 1, 0.4);
    }

    .btn-secondary-compliance {
        background: #ffcc00;
        color: #333;
        box-shadow: 0 4px 8px rgba(255, 204, 0, 0.3);
    }

    .btn-secondary-compliance:hover {
        background: #e6b800;
        color: #333;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(255, 204, 0, 0.4);
    }
