
.finalexpense-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: 1.6;
  color: #1e293b;
  background-color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .landing-page {
    padding: 0 24px;
  }
}

.header-stats {
  background: linear-gradient(135deg, #f59e0b 0%, #f8da8f 100%);
  text-align: center;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}
.header-stats .helped-text {
  font-size: 14px;
  color: #1f2937;
  margin: 0;
  padding: 8px 0;
  font-weight: 500;
}
.header-stats .helped-text strong {
  color: #1f2937;
  font-weight: 800;
}
@media (min-width: 768px) {
  .header-stats .helped-text {
    font-size: 16px;
  }
}

.hero-section {
  text-align: center;
  padding: 20px 0 0 0;
}
.hero-section .main-headline {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 20px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .hero-section .main-headline {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .hero-section .main-headline {
    font-size: 32px;
  }
}
.hero-section .secondary-headline {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 16px 0;
}
.hero-section .opportunity-banner {
  background: linear-gradient(135deg, #036b4a 0%, #059669 50%, #036b4a 100%);
  color: white;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-section .opportunity-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 2s infinite;
}
.hero-section .opportunity-banner p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: white;
}
@media (min-width: 768px) {
  .hero-section .opportunity-banner p {
    font-size: 17px;
  }
}
.hero-section .opportunity-banner p strong {
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.hero-section .opportunity-banner p:first-child {
  font-size: 18px;
}
@media (min-width: 768px) {
  .hero-section .opportunity-banner p:first-child {
    font-size: 20px;
  }
}
.hero-section .quiz-intro p {
  margin: 8px 0;
  font-size: 16px;
  color: #333;
}
@media (min-width: 768px) {
  .hero-section .quiz-intro p {
    font-size: 18px;
  }
}
.hero-section .quiz-intro p strong {
  font-weight: 700;
}
.hero-section .quiz-intro .last-spots {
  color: #e74c3c;
  font-weight: 700;
}

.fixed-call-button {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 90vw;
  margin: 0 auto;
  z-index: 9999;
  text-decoration: none;
  /* Start hidden */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}
@media (min-width: 768px) {
  .fixed-call-button {
    width: 50vw;
    max-width: 400px;
  }
}
.fixed-call-button.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.fixed-call-button .opportunity-banner {
  margin-bottom: 0;
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.fixed-call-button:hover {
  text-decoration: none;
}
.fixed-call-button:hover .opportunity-banner {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(5, 150, 105, 0.5);
}

.form-container {
  background: #f8f9fa;
  border-radius: 5px;
  padding: 24px 20px;
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #036b4a 0%, #059669 50%, #036b4a 100%);
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  .form-container {
    padding: 32px 40px;
  }
}
.form-container .progress {
  background-color: #e2e8f0;
  border-radius: 8px;
  height: 14px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.form-container .progress .progress-bar {
  background: linear-gradient(135deg, #f59e0b 0%, #f8da8f 100%);
  border-radius: 8px;
  color: black;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: width 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 768px) {
  .form-container .progress .progress-bar {
    font-size: 13px;
  }
}

.form-step {
  display: none;
  text-align: center;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease-out;
}
.form-step .step-title {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .form-step .step-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.radio-button-wrapper {
  margin: 0 !important;
}
.radio-button-wrapper input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-button-wrapper label {
  background: linear-gradient(135deg, #036b4a 0%, #059669 100%);
  color: white;
  border: none;
  padding: 20px 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  box-shadow: 0 4px 15px rgba(3, 107, 74, 0.4);
  position: relative;
  overflow: hidden;
  display: block;
  text-align: center;
  margin: 0;
}
.radio-button-wrapper label::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}
.radio-button-wrapper label:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(3, 107, 74, 0.5);
}
.radio-button-wrapper label:hover::before {
  left: 100%;
}
@media (min-width: 768px) {
  .radio-button-wrapper label {
    font-size: 18px;
    min-width: 220px;
  }
}
.radio-button-wrapper:nth-child(2) label {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}
.radio-button-wrapper:nth-child(2) label:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}
.radio-button-wrapper input[type=radio]:checked + label {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 107, 74, 0.6);
}
.radio-button-wrapper:nth-child(3) input[type=radio]:checked + label {
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.qualification-result .success-checkmark {
  font-size: 24px;
  margin-bottom: 20px;
  animation: bounceIn 0.6s ease-out;
  display: inline-block;
}
@media (min-width: 768px) {
  .qualification-result .success-checkmark {
    font-size: 56px;
    margin-bottom: 24px;
  }
}
.qualification-result .qualification-title {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #059669, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 4px rgba(5, 150, 105, 0.2);
}
@media (min-width: 768px) {
  .qualification-result .qualification-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.qualification-result .qualification-text {
  font-size: 18px;
  color: #2c3e50;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .qualification-result .qualification-text {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.qualification-result .qualification-text strong {
  font-weight: 700;
  color: #e74c3c;
}

.application-number {
  background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
  position: relative;
  overflow: hidden;
}
.application-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  border-radius: 16px 16px 0 0;
}
.application-number p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #92400e;
  font-weight: 700;
}
@media (min-width: 768px) {
  .application-number p {
    font-size: 17px;
  }
}
.application-number .phone-number {
  font-size: 24px;
  font-weight: 900;
  color: #1f2937;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .application-number .phone-number {
    font-size: 28px;
  }
}

.urgency-message {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 5px;
  border-left: 4px solid #dc2626;
}
.urgency-message p {
  margin: 8px 0;
  font-size: 15px;
  color: #dc2626;
  font-weight: 600;
}
@media (min-width: 768px) {
  .urgency-message p {
    font-size: 17px;
  }
}
.urgency-message p strong {
  font-weight: 800;
}

.countdown-container {
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #f87171;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(248, 113, 113, 0.2);
  animation: pulse 2s infinite;
}
.countdown-container p {
  margin: 0;
  font-size: 15px;
  color: #dc2626;
  font-weight: 700;
}
@media (min-width: 768px) {
  .countdown-container p {
    font-size: 17px;
  }
}
.countdown-container .countdown-timer {
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 768px) {
  .countdown-container .countdown-timer {
    font-size: 20px;
  }
}

.availability-warning p {
  margin: 16px 0 0 0;
  font-size: 12px;
  color: #666;
  font-style: italic;
}
@media (min-width: 768px) {
  .availability-warning p {
    font-size: 14px;
  }
}

.why-choose-us-section {
  margin: 32px 0;
  padding: 28px 24px;
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 5px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}
.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #f59e0b 0%, #f8da8f 100%);
  border-radius: 16px 16px 0 0;
}
@media (min-width: 768px) {
  .why-choose-us-section {
    margin: 40px 0;
    padding: 32px 40px;
  }
}
.why-choose-us-section .section-title {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #1e293b, #475569);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px 0;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .why-choose-us-section .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
.why-choose-us-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .why-choose-us-section .features-list {
    gap: 20px;
  }
}
.why-choose-us-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.why-choose-us-section .feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}
@media (min-width: 768px) {
  .why-choose-us-section .feature-item {
    padding: 20px 24px;
    gap: 16px;
  }
}
.why-choose-us-section .feature-item .feature-bullet {
  color: #f59e0b;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .why-choose-us-section .feature-item .feature-bullet {
    font-size: 18px;
  }
}
.why-choose-us-section .feature-item .feature-text {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .why-choose-us-section .feature-item .feature-text {
    font-size: 17px;
  }
}
.why-choose-us-section .feature-item .feature-text strong {
  font-weight: 700;
  color: #1e293b;
}

.urgency-block-section {
  margin: 32px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .urgency-block-section {
    margin: 40px 0;
  }
}
.urgency-block-section .urgency-message {
  margin-bottom: 20px;
  padding: 24px 20px;
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
  border-radius: 5px;
  border-left: 4px solid #dc2626;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.15);
}
@media (min-width: 768px) {
  .urgency-block-section .urgency-message {
    padding: 28px 24px;
    margin-bottom: 24px;
  }
}
.urgency-block-section .urgency-message p {
  margin: 0;
  font-size: 16px;
  color: #dc2626;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .urgency-block-section .urgency-message p {
    font-size: 18px;
  }
}
.urgency-block-section .urgency-message p strong {
  font-weight: 800;
}
.urgency-block-section a {
  text-decoration: none;
}
.urgency-block-section a:hover {
  text-decoration: none;
}

.testimonials-section {
  margin: 32px 0;
}
@media (min-width: 768px) {
  .testimonials-section {
    margin: 40px 0;
  }
}

.testimonial {
  background: #f8f9fa;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #036b4a, #059669);
  border-radius: 20px 0 0 20px;
}
.testimonial:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .testimonial {
    padding: 24px 28px;
    margin-bottom: 20px;
    gap: 20px;
  }
}
.testimonial .customer-photo {
  flex-shrink: 0;
  margin-bottom: 0;
}
.testimonial .customer-photo .testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .testimonial .customer-photo .testimonial-image {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }
}
.testimonial .testimonial-content {
  flex: 1;
}
.testimonial .testimonial-content .star-rating {
  display: flex;
  gap: 2px;
  margin: 12px 0;
}
.testimonial .testimonial-content .star-rating .star {
  font-size: 16px;
  color: #ffc800;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.4);
  line-height: 1;
}
@media (min-width: 768px) {
  .testimonial .testimonial-content .star-rating .star {
    font-size: 18px;
  }
}
.testimonial .testimonial-content .testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0 0 12px 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .testimonial .testimonial-content .testimonial-text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.testimonial .testimonial-content .testimonial-text strong {
  font-weight: 700;
  color: #036b4a;
}
.testimonial .testimonial-content .customer-name {
  font-size: 12px;
  color: #666;
  margin: 0;
}
@media (min-width: 768px) {
  .testimonial .testimonial-content .customer-name {
    font-size: 14px;
  }
}
.testimonial .testimonial-content .customer-name strong {
  font-weight: 600;
  color: #2c3e50;
}

.footer-section {
  background: linear-gradient(145deg, #374151 0%, #1f2937 100%);
  border-top: 1px solid #4b5563;
  padding: 32px 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .footer-section {
    padding: 40px 24px;
    margin-top: 60px;
  }
}

.footer-links {
  text-align: center;
  margin-bottom: 32px;
}
.footer-links .footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0 20px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links .footer-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f3f4f6;
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .footer-links .footer-link {
    font-size: 16px;
    margin: 0 24px;
    padding: 10px 20px;
  }
}

.disclaimer {
  margin-bottom: 24px;
}
.disclaimer p {
  font-size: 11px;
  line-height: 1.4;
  color: #d1d5db;
  margin: 12px 0;
}
@media (min-width: 768px) {
  .disclaimer p {
    font-size: 12px;
    line-height: 1.5;
  }
}

.copyright {
  text-align: center;
}
.copyright p {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .copyright p {
    font-size: 14px;
  }
}

.disqualification-section {
  text-align: center;
  padding: 32px 20px;
  margin: 24px 0;
}
@media (min-width: 768px) {
  .disqualification-section {
    padding: 40px 24px;
    margin: 32px 0;
  }
}
.disqualification-section .disqualification-message {
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #f87171;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 8px 25px rgba(248, 113, 113, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.6s ease-out;
}
.disqualification-section .disqualification-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  border-radius: 16px 16px 0 0;
}
@media (min-width: 768px) {
  .disqualification-section .disqualification-message {
    padding: 40px 32px;
  }
  .disqualification-section .disqualification-message::after {
    font-size: 32px;
    top: 20px;
    right: 24px;
  }
}
.disqualification-section .disqualification-message h2 {
  font-size: 24px;
  font-weight: 800;
  color: #dc2626;
  margin: 0 0 16px 0;
  text-shadow: 0 1px 2px rgba(220, 38, 38, 0.1);
}
@media (min-width: 768px) {
  .disqualification-section .disqualification-message h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.disqualification-section .disqualification-message p {
  font-size: 16px;
  color: #7f1d1d;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}
@media (min-width: 768px) {
  .disqualification-section .disqualification-message p {
    font-size: 18px;
  }
}

.hero-section-content .trust-text {
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #22c55e;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
  position: relative;
}
.hero-section-content .trust-text::before {
  content: "🛡️";
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 20px;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .hero-section-content .trust-text {
    padding: 24px 32px;
    margin: 24px 0;
  }
  .hero-section-content .trust-text::before {
    font-size: 24px;
    top: 20px;
    left: 24px;
  }
}
.hero-section-content .trust-text p {
  margin: 0;
  font-size: 16px;
  color: #15803d;
  font-weight: 600;
  line-height: 1.5;
  padding-left: 40px;
}
@media (min-width: 768px) {
  .hero-section-content .trust-text p {
    font-size: 18px;
    padding-left: 48px;
  }
}
.hero-section-content .trust-text p strong {
  font-weight: 800;
  color: #14532d;
}

.form-step {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(248, 113, 113, 0.2);
  }
  50% {
    box-shadow: 0 4px 25px rgba(248, 113, 113, 0.4);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.thank-you-page .success-checkmark {
  font-size: 24px;
  margin-bottom: 24px;
  display: block;
  text-align: center;
  animation: bounceIn 0.8s ease-out;
  color: #059669;
  text-shadow: 0 2px 4px rgba(5, 150, 105, 0.3);
}
@media (min-width: 768px) {
  .thank-you-page .success-checkmark {
    font-size: 72px;
    margin-bottom: 32px;
  }
}
.thank-you-page .next-steps {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
  text-align: left;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
  position: relative;
}
.thank-you-page .next-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 16px 16px 0 0;
}
.thank-you-page .next-steps h3 {
  background: linear-gradient(135deg, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .thank-you-page .next-steps h3 {
    font-size: 22px;
  }
}
.thank-you-page .next-steps .steps-list {
  margin: 0;
  padding-left: 20px;
}
.thank-you-page .next-steps .steps-list li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .thank-you-page .next-steps .steps-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.info-section {
  margin: 48px 0;
}
.info-section .info-card {
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #3b82f6;
  border-radius: 16px;
  padding: 28px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
  position: relative;
}
.info-section .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 16px 16px 0 0;
}
@media (min-width: 768px) {
  .info-section .info-card {
    padding: 32px;
  }
}
.info-section .info-card h4 {
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .info-section .info-card h4 {
    font-size: 22px;
  }
}
.info-section .info-card ul {
  margin: 0;
  padding-left: 20px;
}
.info-section .info-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .info-section .info-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
