* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #142a4e;
  color: white;
  height: 100%;
}

p {
  margin-bottom: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 16px;
  line-height: 1.5;
}

.container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Container for desktop centering */
.container {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}

.page-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  width: 100%;
}

.logo {
  width: 56px;
  height: 56px;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.call-now-btn {
  background-color: #fdeb0b;
  color: #1a3a52;
  font-weight: bold;
  font-size: 16px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.call-now-btn:hover {
  background-color: #fdeb0b;
}

/* Hero Section */
.hero {
  padding: 120px 0;
  text-align: center;
}

.hero-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.hero-phone {
  color: #fdeb0b;
}

.highlight {
  color: #fdeb0b;
}

/* Features Section */
.features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-card {
  background-color: #1f3557;
  border: 1px solid #475774;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd700;
}

.feature-icon img {
  width: 24px;
  height: 24px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-description {
  font-size: 14px;
  color: #d1d5db;
}

/* CTA Section */
.cta-section {
  padding: 0 0 24px;
}

.cta-button {
  width: 100%;
  background-color: transparent;
  color: #ffd700;
  font-weight: bold;
  font-size: 18px;
  padding: 24px;
  border: 2px solid #ffd700;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.3s;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
}

.cta-button:hover {
  background-color: rgba(255, 215, 0, 0.1);
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

.cta-subtext {
  text-align: center;
  color: #FFFFFF;
  opacity: 0.7;
  font-size: 14px;
  margin-top: 12px;
}

.cta-subtext strong {
  color: white;
}

/* Bottom Features */
.bottom-features {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bottom-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.bottom-feature p {
  font-weight: 600;
  font-size: 16px;
}

/* Footer */
.footer {
  width: 100%;
  padding: 32px 0;
  background: #1f3557;
}

.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  font-size: 14px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 0;
  padding: 24px 0;
}

/* Quiz Styles */
/* Quiz Container */
.quiz-container {
  flex: 1;
  padding: 32px 0;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.quiz-title {
  text-align: center;
  margin-bottom: 24px;
}

/* Progress Section */
.progress-section {
  margin-bottom: 40px;
}

.progress-text {
  text-align: center;
  color: #ffd700;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.current-step {
  margin-right: 4px;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #ffd700;
  transition: width 0.3s ease;
  border-radius: 3px;
}

/* Question Screen */
.question-block {
  animation: fadeIn 0.3s ease;

  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #4d5e79;
  background-color: #1f3557;
  padding: 32px;
  border-radius: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-number {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.question-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  color: white;
}

/* Answer Options */
.answer-options {
  display: flex;
  gap: 16px;
}

.radio-option {
  display: flex;
  flex: 1;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-color: #354967;
  border-width: 1px;
  border-style: solid;
  transition: background-color 0.2s;
}

.radio-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #ffd700;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ffd700;
  border-radius: 50%;
}

.radio-label {
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.success-icon,
.rejection-icon {
  margin: 0 auto 30px;
  width: 40px;
  height: 40px;
}

.success-icon img,
.rejection-icon img {
  width: 40px;
  height: 40px;
}

.result-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: white;
}

.result-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.result-subtitle strong {
  color: #ffd700;
  font-weight: 700;
}

/* Page Container */
.page-container {
  padding: 32px 0;
}

.page-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.terms {
  padding: 24px 0;
}

/* Desktop Responsive Styles */
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }

  .hero-title {
    font-size: 36px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-logos {
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }

  .hero-title {
    font-size: 42px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .bottom-features {
    padding: 48px;
    flex-direction: row;
    justify-content: space-around;
  }

  .bottom-feature {
    flex-direction: column;
    text-align: center;
    max-width: 250px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }

  .hero-title {
    font-size: 48px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}
