.elementor-195559 .elementor-element.elementor-element-d6f6764{--spacer-size:50px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-195559 .elementor-element.elementor-element-d451e76{--spacer-size:50px;}body.elementor-page-195559:not(.elementor-motion-effects-element-type-background), body.elementor-page-195559 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-a84dae4 *//* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

header {
  margin-bottom: 30px;
}

.quiz-title {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
}

.quiz-subtitle {
  font-size: 1.5rem;
  color: #666;
}

.quiz-step {
  display: none;
}

.quiz-step:first-child {
  display: block;
}

.quiz-option {
  background-color: #ffcc00;
  color: #333;
  border: none;
  border-radius: 8px;
  padding: 20px 40px;
  font-size: 1.5rem;
  margin: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quiz-option:hover {
  background-color: #ffc107;
  transform: scale(1.05);
}

.cta-button {
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 20px 40px;
  font-size: 1.5rem;
  margin-top: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #218838;
  transform: scale(1.05);
}

/* Enlarged text for the result paragraph */
#result-text {
  font-size: 1.8rem; /* Increased font size */
  color: #444; /* Slightly darker text for better readability */
  line-height: 1.8; /* Improved line spacing for clarity */
  margin: 20px 0; /* Space around the paragraph */
  text-align: center;
}

/* Callout Animation */
.animated-callout {
  margin: 20px 0;
  padding: 15px;
  background-color: #ffeb3b;
  color: #333;
  font-size: 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Define the pulsing effect */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
}

/* Form Header */
.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.form-subtext {
  font-size: 1.2rem;
  color: #666;
}

/* Form Content Styling */
.form-content {
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .quiz-title {
    font-size: 2.5rem;
  }

  .quiz-subtitle {
    font-size: 1.2rem;
  }

  .quiz-option, .cta-button {
    padding: 15px 30px;
    font-size: 1.2rem;
  }

  #result-text {
    font-size: 1.5rem;
  }

  .form-title {
    font-size: 2rem;
  }

  .form-subtext {
    font-size: 1rem;
  }
}/* End custom CSS */