
        /* ==============================
           SERVICE CARDS
        ===============================*/
        .border-service {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            transition: all 0.3s ease;
            background-color: #fff;
            padding: 25px;
            text-align: center;
        }

        .border-service:hover {
            border-color: #7FB800;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .border-service h4 {
            font-weight: 600;
            margin-top: 15px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .border-service p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .service-icon img {
            transition: transform 0.3s ease;
            width: 70px;
            height: 70px;
        }

        .border-service:hover .service-icon img {
            transform: scale(1.1);
        }



        

        /* --- Responsive --- */
        @media (max-width: 768px) {
            #faq {
                padding: 40px 0;
            }

            #faq .section-heading h2 {
                font-size: 1.6rem;
            }

            .faq-wrap .card-header h6 {
                font-size: 15px;
            }

            .faq-wrap .card-body {
                font-size: 14px;
            }
        }


        /* ==============================
           BUTTONS
        ===============================*/
        .btn-green {
            background-color: #7FB800;
            border: none;
            color: #fff;
            border-radius: 6px;
            padding: 10px 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .btn-green:hover {
            background-color: #6aa300;
            box-shadow: 0 4px 10px rgba(127, 184, 0, 0.3);
            transform: translateY(-2px);
        }

        .btn-link {
            text-decoration: none;
            font-weight: 600;
            color: #2d3e50;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            padding: 15px 20px;
            transition: color 0.3s ease;
        }

        .btn-link:hover {
            color: #7FB800;
        }

        /* ==============================
           RESPONSIVE
        ===============================*/
        @media (max-width: 768px) {
            .border-service {
                margin-bottom: 20px;
            }

            .faq .title {
                font-size: 1.6rem;
            }

            .btn-green {
                font-size: 14px;
                padding: 8px 20px;
            }
        }
