        .service-card,
        .testimonial {
            background: white;
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            padding: 20px;
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-card:hover,
        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .service-icon {
            color: #007bff;
            /* Bootstrap primary color */
            font-size: 30px;
            margin-bottom: 15px;
        }

        .btn-primary {
            border-radius: 20px;
            padding: 10px 25px;
            background-color: #007bff;
            border-color: #007bff;
            transition: background-color 0.3s, border-color 0.3s;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            border-color: #004885;
        }

        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 40px;
            margin-bottom: 10px;
        }

        .testimonial-text {
            font-size: 1rem;
            font-style: italic;
            color: #555;
        }

        .testimonial-author {
            font-size: 1.1rem;
            font-weight: bold;
            color: #000;
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #666;
        }