/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8fbff;
  min-height: 100vh;
  position: relative;
}

/* Header */
.header {
  background: #1e1548;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced header layout with flexbox for logo and contact info */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo img {
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffffff;
}

.contact-link svg {
  flex-shrink: 0;
}

/* Updated button styling to match "Find Us" black button design */
.btn-find-us {
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-find-us:hover {
  transform: translateY(-2px);

}

.btn-find-us svg {
  flex-shrink: 0;
}

.btn-contact {
  background: #ff4500;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-contact:hover {
  background: #e63e00;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.4);
}

/* Landing Section */
.landing-section {
  display: flex;
  align-items: start;
  justify-content: center;
  background: #f8fbff;
  padding-bottom: 40px;
}

.logo-circle {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.main-title {
  font-size: 48px;
  color: rgb(33, 23, 92);
  font-weight: 400;
  margin-bottom: 10px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.highlight-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 50px;
  background-image: linear-gradient(to left, #ffd600, #df451d);
  background-clip: text;
  color: transparent !important;
}

.quiz-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
}

.quiz-title .bold-text {
  font-weight: 700;
  color: rgb(33, 23, 92);
}

.quiz-subtitle {
  font-size: 24px;

  margin-bottom: 40px;
}

.btn-quiz {
  background: #df451d;
  color: #ffffff;
  border: none;
  padding: 18px 50px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;

  letter-spacing: 1px;
}

.btn-quiz:hover {
  background: linear-gradient(135deg, #df451d 0%, #ff6b35 71%, #f39c12 100%);
}


/* Quiz Section */
.quiz-section {
  padding: 40px 20px 100px;
  min-height: calc(100vh - 140px);
}

.quiz-container {
  background: transparent;
  border-radius: 15px;
  position: relative;
}


/* Progress Bar */
.progress-container {
  margin-bottom: 40px;
}

.progress {
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transition: width 0.5s ease;
}

/* Form Steps */
.form-step {
  display: none;
  animation: slideIn 0.5s ease;
  padding: 10px;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.question-title {
  font-size: 28px;
  color: #1e1548;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}

.step-number {
  color: #667eea;
  font-weight: 700;
  margin-right: 8px;
}

.note-text {
  font-size: 15px;
  color: #666;
}

/* Radio Options */
.radio-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.radio-item {
  position: relative;
}

.radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-item label {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f5f5ff;
  border: 3px solid #e0e0f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 50px;
}

.option-letter {
  width: 35px;
  height: 35px;
  background: #ffffff;
  border: 2px solid #667eea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #667eea;
  margin-right: 20px;
  flex-shrink: 0;
}

.option-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
}

.option-text strong {
  color: #667eea;
  font-weight: 600;
}

.radio-item input[type="radio"]:checked+label {
  background: linear-gradient(135deg, #b8c5f2 0%, #d4c5f0 100%);
  border-color: #667eea;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.radio-item input[type="radio"]:checked+label .option-letter {
  background: #667eea;
  color: #ffffff;
  border-color: #667eea;
}

.radio-item input[type="radio"]:checked+label .option-text strong {
  color: #1e1548;
}

.radio-item label:hover {
  border-color: #667eea;
  background: #eef0ff;
}

/* Congratulations Box */
.congratulations-box {
  text-align: center;
  padding: 60px 40px;
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 0;
}

.congrats-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.congrats-subtitle {
  font-size: 20px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.congrats-subtitle strong {
  color: #ff5722;
  font-weight: 700;
}

/* Added congratulations card styling for NO path */
.congratulations-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  margin-bottom: 0;
}

.congrats-text {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.congrats-text strong {
  color: #ff5722;
  font-weight: 700;
}

/* Updated input styling to match reference design - simpler, cleaner look */
.form-group {
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-control::placeholder {
  color: #999;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control.error {
  border-color: #dc3545;
}

/* Added error message styling for email and name validation */
.error-message {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
  font-weight: 500;
}

.error-message.show {
  display: block;
}

/* Input Wrapper */
.input-wrapper {
  margin-bottom: 30px;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  font-size: 18px;
  border: 3px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input.error {
  border-color: #dc3545;
}

/* Enhanced intl-tel-input styling to match reference design with flag and code inside input */
.iti {
  width: 100%;
  display: block;
}

.iti__input {
  width: 100%;
  padding: 18px 20px 18px 90px;
  font-size: 18px;
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: #ffffff;
}

.iti__input:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.iti__input.error {
  border-color: #dc3545;
}

.iti__selected-flag {
  padding: 0 15px;
  background: #f8f9fa;
  border-right: 2px solid #e0e0e0;
  border-radius: 8px 0 0 8px;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  padding: 0;
}

/* Ensure dial code is visible and properly styled */
.iti__selected-dial-code {
  display: inline-block !important;
  font-weight: 600;
  color: #333;
  font-size: 16px;
  margin-left: 8px;
  opacity: 1 !important;
  visibility: visible !important;
}

.iti__arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #667eea;
  margin-left: 8px;
}

.iti__country-list {
  border: 2px solid #667eea;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  margin-top: 5px;
}

.iti__country {
  padding: 10px 15px;
  transition: background 0.2s ease;
}

.iti__country:hover {
  background: #f0f4ff;
}

.iti__country.iti__highlight {
  background: #667eea;
  color: #ffffff;
}

.phone-error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
  font-weight: 500;
}

.phone-error.show {
  display: block;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel],
.iti--show-selected-dial-code input.iti__tel-input,
.iti--show-selected-dial-code input.iti__tel-input[type=text],
.iti--show-selected-dial-code input.iti__tel-input[type=tel] {
  padding-right: 6px;
  padding-left: 110px !important;
  margin-left: 0;
}

/* Buttons */
.press-enter-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-next-step,
.btn-submit {
  background: #667eea;
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-next-step:hover,
.btn-submit:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-next-step:disabled,
.btn-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.btn-submit {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0e8074 0%, #2ed968 100%);
}

.click-hint-small {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.click-hint-small strong {
  color: #333;
}

/* Footer */
.footer {
  background: #1e1548;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%
}

.copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

.copyright strong {
  color: #ffffff;
}

/* Utility Classes */
.d-none {
  display: none !important;
}

/* Step indicator styling */
.step-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  gap: 24px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.2);
  border: 2px solid rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  color: rgba(102, 126, 234, 0.6);
  transition: all 0.3s ease;
  position: relative;
}

.step-circle.completed {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: #ffffff;
}

.step-circle.completed::after {
  content: "✓";
  position: absolute;
  font-size: 24px;
}

.step-circle.active {
  background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
  border-color: #11998e;
  color: #ffffff;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 153, 142, 0.7);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(17, 153, 142, 0);
  }
}

.step-label {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  text-align: center;
  max-width: 70px;
  font-weight: 500;
}

.step-circle.completed~.step-label,
.step-circle.active~.step-label {
  color: #1e1548;
  font-weight: 600;
}

/* Added scrollable form content wrapper */
.form-content-wrapper {
  max-height: 500px;
  overflow: hidden;
  overflow-y: auto;
  margin-bottom: 20px;
}

.form-content-wrapper::-webkit-scrollbar {
  width: 8px;
}

.form-content-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.form-content-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
}

.form-content-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5568d3 0%, #653a8a 100%);
}

/* Added navigation buttons styling */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(102, 126, 234, 0.1);
  margin-top: 20px;
}

.btn-previous,
.btn-next {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-previous {
  background: #6c757d;
  color: #ffffff;
}

.btn-previous:hover {
  background: #5a6268;
  transform: translateX(-3px);
}

.btn-next {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  margin-left: auto;
}

.btn-next:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-next:disabled,
.btn-previous:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.btn-next svg,
.btn-previous svg {
  flex-shrink: 0;
}

/* Added reCAPTCHA wrapper styling */
.recaptcha-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.recaptcha-wrapper .g-recaptcha {
  transform: scale(1);
  transform-origin: center center;
}

.recaptcha-wrapper .error-message {
  text-align: center;
  margin-top: 10px;
}

/* Added privacy checkbox styling */
.privacy-checkbox {
  margin-bottom: 0;
}

.privacy-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  border: 2px solid #667eea;
  border-radius: 4px;
  flex-shrink: 0;
}

.privacy-checkbox .form-check-input:checked {
  background-color: #667eea;
  border-color: #667eea;
}

.privacy-checkbox .form-check-label {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-checkbox .privacy-link {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-checkbox .privacy-link:hover {
  color: #e64a19;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 767px) {
  .main-title {
    font-size: 32px;
  }
  .privacy-checkbox .form-check-label {
 
  display: block;
  
}

  .quiz-section {
    padding: 0px 0px 100px;
    min-height: calc(100vh - 140px);
}
  .highlight-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .quiz-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .question-title {
    font-size: 22px;
  }

  .quiz-container {
    padding: 25px;
  }

  .option-letter {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-right: 15px;
  }

  .option-text {
    font-size: 16px;
  }

  .radio-item label {
    padding: 15px;
    min-height: auto;
  }

  .congrats-title {
    font-size: 32px;
  }

  .congrats-subtitle {
    font-size: 16px;
  }

  .press-enter-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-next-step,
  .btn-submit {
    width: 100%;
  }

  .step-indicator {
    gap: 5px;
    margin-top: 15px;
    justify-content: start;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .step-label {
    font-size: 9px;
    max-width: 50px;
  }

  .form-content-wrapper {
    max-height: 400px;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-previous,
  .btn-next {
    width: 100%;
    justify-content: center;
  }

  .btn-next {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .quiz-container {
    padding: 20px;
  }

  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center center;
  }
}

/* Cookie consent banner styling matching the design images */
/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  width: calc(100% - 40px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  animation: slideUp 0.4s ease;
  display: none;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.cookie-text {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.cookie-policy-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-policy-link:hover {
  color: #ff4500;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-cookie {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-customize {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-customize:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-reject {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-accept {
  background: #ffffff;
  color: #1a1a1a;
}

.btn-accept:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 40px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUpModal 0.4s ease;
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-modal-title {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.cookie-modal-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.cookie-option {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-option-info {
  flex: 1;
}

.cookie-option-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.cookie-option-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #667eea;
}

.cookie-status {
  color: rgba(255, 255, 255, 0.6);
}



.btn-save-preferences {
  width: 100%;
  padding: 16px 24px;
  background: #ffffff;
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-save-preferences:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {

  /* Header Mobile Styles */
  .header {
    padding: 15px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .logo img {
    height: 40px;
    width: auto;
  }

  .header-right {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-link {
    font-size: 13px;
  }

  .btn-contact {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 20px;
  }

  /* Cookie Consent Mobile Styles */
  .cookie-consent {
    bottom: 20px;
    padding: 25px;
    max-width: calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .cookie-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .cookie-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cookie-buttons {
    gap: 10px;
  }

  .btn-cookie {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Cookie Modal Mobile Styles */
  .cookie-modal {
    padding: 15px;
  }

  .cookie-modal-content {
    padding: 25px;
    max-height: 85vh;
  }

  .cookie-modal-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .cookie-modal-text {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .cookie-options {
    gap: 15px;
    margin-bottom: 25px;
  }

  .cookie-option {
    padding: 16px;
  }

  .cookie-option-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-option-title {
    font-size: 16px;
  }

  .cookie-option-desc {
    font-size: 12px;
  }

  .cookie-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .btn-save-preferences {
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Landing Section Mobile */
  .landing-section {
    padding: 20px 10px;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: none;
  }

  .main-title {
    font-size: 32px;
  }

  .highlight-title {
    font-size: 38px;
  }

  .quiz-title {
    font-size: 24px;
  }

  .btn-quiz {
    padding: 15px 35px;
    font-size: 16px;
  }

  /* Quiz Section Mobile */
  .quiz-container {
    padding: 0;
  }

  .question-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .radio-item label {
    padding: 15px;
    min-height: 60px;
  }

  .option-letter {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-right: 15px;
  }

  .option-text {
    font-size: 15px;
  }

  .btn-next,
  .btn-previous {
    padding: 12px 25px;
    font-size: 14px;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-label {
    font-size: 10px;
    max-width: 60px;
  }

  /* Form Inputs Mobile */
  .form-control,
  .form-input {
    padding: 15px 18px;
    font-size: 16px;
  }

  .iti__input {
    padding: 15px 18px 15px 85px;
    font-size: 16px;
  }

  .iti__selected-flag {
    padding: 0 12px;
    width: 80px;
  }

  .iti__selected-dial-code {
    font-size: 14px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .header-content {
    padding: 0;
  }

  .logo img {
    height: 35px;
  }

  .cookie-consent {
    bottom: 10px;
    padding: 20px;
    border-radius: 12px;
  }

  .cookie-title {
    font-size: 18px;
  }

  .cookie-text {
    font-size: 13px;
  }

  .cookie-modal-content {
    padding: 20px;
  }

  .cookie-modal-title {
    font-size: 20px;
  }

  .cookie-option {
    padding: 14px;
  }

  .question-title {
    font-size: 20px;
  }

  .btn-quiz {
    padding: 14px 24px;
    font-size: 15px;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-next,
  .btn-previous {
    width: 100%;
    justify-content: center;
  }

  .btn-next {
    margin-left: 0;
    order: -1;
  }
}