
        :where([class^="ri-"])::before {
            content: "\f3c2";
        }

        body {
            font-family: 'Source Sans 3', sans-serif;
        }

        h1,
        h2,
        h3,
        h4,
        .serif {
            font-family: 'Playfair Display', serif;
        }

        .hero-section {
            background-image: linear-gradient(to right, rgba(27, 54, 93, 0.85), rgba(27, 54, 93, 0.7)), url('../image/bg.jpeg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: #C5A572;
        }

        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .practice-card:hover {
            border-color: #C5A572;
            transform: translateY(-5px);
        }

        .custom-checkbox {
            display: inline-block;
            position: relative;
            padding-left: 30px;
            cursor: pointer;
            user-select: none;
        }

        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 1px solid #C5A572;
            border-radius: 4px;
        }

        .custom-checkbox input:checked~.checkmark {
            background-color: #C5A572;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .custom-checkbox input:checked~.checkmark:after {
            display: block;
        }

        .custom-checkbox .checkmark:after {
            left: 7px;
            top: 3px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .testimonial-card {
            transition: all 0.3s ease;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1);
        }

        .testimonial-card.inactive {
            opacity: 0;
            transform: scale(0.9);
            position: absolute;
        }
  