:where([class^="ri-"])::before { content: "\f3c2"; }
body {
font-family: 'DM Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6, .nav-item {
font-family: 'Manrope', sans-serif;
}
.hero-section {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.sticky-header {
transition: all 0.3s ease;
}
.sticky-header.scrolled {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.program-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-indicator {
transition: all 0.3s ease;
}
.testimonial-indicator.active {
width: 2rem;
background-color: #15B8A6;
}
.language-selector:focus-within .language-options {
display: block;
}
.text-center { text-align: center; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-gray-700 { color: #4a5568; }
.text-gray-900 { color: #1a202c; }
.font-bold { font-weight: 700; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

:where([class^="ri-"])::before {
    content: "\f3c2";
  }
  .form-step {
    display: none;
  }
  .form-step.active {
    display: block;
  }
  .progress-bar {
    transition: width 0.3s ease-in-out;
  }

  body{
    min-height: 100vh;

  }
  
.custom-shadow {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.p-4{
    background-color: #FFFFFF;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Progress indicator */
.progress-step {
  text-align: right;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Form field styling */
.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 15px;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="number"],
.form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.form-field input:focus,
.form-field select:focus {
  border-color: #4a90e2;
  outline: none;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* Required field indicator */
.form-field label:after {
  content: '*';
  color: #e74c3c;
  margin-left: 4px;
}

/* Button styling */
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.form-buttons button {
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.previous-btn {
  background-color: #f1f1f1;
  color: #333;
}

.previous-btn:hover {
  background-color: #e1e1e1;
}

.submit-btn {
  background-color: #4a90e2;
  color: white;
}

.submit-btn:hover {
  background-color: #3a7bc8;
}

/* CAPTCHA styling */
.captcha-container {
  margin: 25px 0;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
  text-align: center;
}

.captcha-error {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .form-container {
      padding: 15px;
  }
  
  .form-buttons {
      flex-direction: column;
  }
  
  .form-buttons button {
      width: 100%;
      margin-bottom: 10px;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d3748;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#cookie-banner p {
  margin: 0 0 10px 0;
}
#cookie-banner button {
  background: #f1d600;
  color: #000;
  border: none;
  padding: 6px 12px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 4px;
}
#cookie-banner a {
  color: #f1d600;
  cursor: pointer;
  text-decoration: underline;
}
#cookie-banner .details {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  max-height: 250px;
  overflow-y: auto;
}

