
        :where([class^="ri-"])::before { content: "\f3c2"; }
        body {
            font-family: 'Montserrat', sans-serif;
        }
        .hero-gradient {
            background: linear-gradient(135deg, #1E3D59 0%, #2B6CB0 100%);
        }
        input:focus {
            outline: none;
        }
        .custom-checkbox {
            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: 2px solid #2B6CB0;
            border-radius: 4px;
        }
        .custom-checkbox input:checked ~ .checkmark {
            background-color: #2B6CB0;
        }
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        .custom-checkbox input:checked ~ .checkmark:after {
            display: block;
        }
        .custom-checkbox .checkmark:after {
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .testimonial-card {
            transition: transform 0.3s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        .blog-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(43, 108, 176, 0.1), 0 4px 6px -2px rgba(43, 108, 176, 0.05);
        }
        :where([class^="ri-"])::before {
            content: "\f3c2";
          }
          body {
            font-family: "Montserrat", sans-serif;
          }
          .hero-gradient {
            background: linear-gradient(135deg, #1e3d59 0%, #2b6cb0 100%);
          }
          input:focus {
            outline: none;
          }
          .team-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
          .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(43, 108, 176, 0.1),
              0 4px 6px -2px rgba(43, 108, 176, 0.05);
          }
          .certification-badge {
            transition: transform 0.2s ease;
          }
          .certification-badge:hover {
            transform: scale(1.05);
          }
          .office-image {
            transition: opacity 0.3s ease;
          }
          .office-image:hover {
            opacity: 0.9;
          }