/* Reset and Base Styles */
:root {
    --primary-color: #002147;    /* Deep navy blue */
    --primary-light: #003066;    /* Slightly lighter navy for hover states */
    --button-color: #005c5c;     /* Updated teal button color */
    --button-hover: #006f6f;     /* Slightly lighter teal for hover state */
    --accent-color: #10b981;     /* Fresh green */
    --text-primary: #1f2937;     /* Dark gray for text */
    --text-secondary: #6b7280;   /* Medium gray for secondary text */
    --bg-light: #f9fafb;         /* Light gray background */
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-padding: clamp(1rem, 5vw, 2rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow: hidden;
}

/* Header Styles */
.header {
    background-color: var(--primary-color);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}



.center-text {
  text-align: center;
  margin: 0 auto;
}

.quiz-intro {
  background: #f9f9f9;
  padding: 1.2rem;
  border-radius: 8px;
}

.ezy__howitworks5_tPAjrRcz {
  /* Bootstrap variables */
  --bs-body-color: #212529;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-card-bg: #ffffff;
  --ezy-card-shadow: 0px 1px 8px rgba(173, 174, 197, 0.2);
  --ezy-icon-shadow: 0px 20px 40px 0 rgba(234, 233, 233, 0.92);

  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .ezy__howitworks5_tPAjrRcz {
    padding: 0px 0;
  }
}

/* Gray Block Style */
.gray .ezy__howitworks5_tPAjrRcz,
.ezy__howitworks5_tPAjrRcz.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__howitworks5_tPAjrRcz,
.ezy__howitworks5_tPAjrRcz.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-card-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  --ezy-icon-shadow: -8px 25px 40px 0 rgba(0, 0, 0, 0.2);
}

/* Dark Block Style */
.dark .ezy__howitworks5_tPAjrRcz,
.ezy__howitworks5_tPAjrRcz.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-card-bg: rgb(30, 39, 53);
  --ezy-card-shadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  --ezy-icon-shadow: -8px 25px 40px 0 rgba(0, 0, 0, 0.2);
}

.ezy__howitworks5_tPAjrRcz-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
}

@media (min-width: 768px) {
  .ezy__howitworks5_tPAjrRcz-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.ezy__howitworks5_tPAjrRcz-sub-heading {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}

.ezy__howitworks5_tPAjrRcz-card {
  background-color: var(--ezy-card-bg);
  box-shadow: var(--ezy-card-shadow);
  border: 0;
  border-radius: 10px;
}
.ezy__howitworks5_tPAjrRcz-icon {
  box-shadow: var(--ezy-icon-shadow);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 22px;
}
.ezy__howitworks5_tPAjrRcz-card .card-text {
  font-size: 16px;
  line-height: 1.7;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.trust-indicators .rating {
  font-size: 1.15rem;
}

.trust-indicators .stars {
  display: block;
  color: #f5b301;
  font-size: 1.2rem;
  margin: 0.2rem 0;
}

.trust-indicators .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trust-indicators .badges img {
  max-width: 100px;
  height: auto;
}

.ezy__faq4_Dtx0Pip9 {
  /* Bootstrap variables */
  --bs-body-color: #28303b;
  --bs-body-bg: rgb(255, 255, 255);

  /* Easy Frontend variables */
  --ezy-theme-color: rgb(13, 110, 253);
  --ezy-theme-color-rgb: 13, 110, 253;
  --ezy-item-bg: #ffffff;
  --ezy-item-shadow: 0px 1px 8px rgba(159, 190, 218, 0.37);

  background-color: var(--bs-body-bg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .ezy__faq4_Dtx0Pip9 {
    padding: 100px 0;
  }
}

/* Gray Block Style */
.gray .ezy__faq4_Dtx0Pip9,
.ezy__faq4_Dtx0Pip9.gray {
  /* Bootstrap variables */
  --bs-body-bg: rgb(246, 246, 246);
}

/* Dark Gray Block Style */
.dark-gray .ezy__faq4_Dtx0Pip9,
.ezy__faq4_Dtx0Pip9.dark-gray {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(30, 39, 53);

  /* Easy Frontend variables */
  --ezy-item-bg: rgb(11, 23, 39);
  --ezy-item-shadow: 0px 4px 44px rgba(0, 0, 0, 0.27);
}

/* Dark Block Style */
.dark .ezy__faq4_Dtx0Pip9,
.ezy__faq4_Dtx0Pip9.dark {
  /* Bootstrap variables */
  --bs-body-color: #ffffff;
  --bs-body-bg: rgb(11, 23, 39);

  /* Easy Frontend variables */
  --ezy-item-bg: rgb(30, 39, 53);
  --ezy-item-shadow: 0px 4px 44px rgba(0, 0, 0, 0.261);
}

.ezy__faq4_Dtx0Pip9-heading {
  font-weight: bold;
  font-size: 25px;
  line-height: 25px;
  color: var(--bs-body-color);
}

@media (min-width: 768px) {
  .ezy__faq4_Dtx0Pip9-heading {
    font-size: 45px;
    line-height: 45px;
  }
}

.ezy__faq4_Dtx0Pip9-sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: var(--bs-body-color);
}

.ezy__faq4_Dtx0Pip9-item {
  background-color: transparent;
  border-radius: 10px;
}

.ezy__faq4_Dtx0Pip9-item * {
  color: var(--bs-body-color);
}

.ezy__faq4_Dtx0Pip9-btn-collapse [class*="fa-"] {
  transition: transform 0.25s ease-in-out;
}

.ezy__faq4_Dtx0Pip9-btn-collapse:focus {
  box-shadow: none;
}

.ezy__faq4_Dtx0Pip9-btn-collapse.active [class*="fa-"],
.ezy__faq4_Dtx0Pip9-btn-collapse[aria-expanded="true"] [class*="fa-"] {
  transform: rotate(-180deg);
}

.ezy__faq4_Dtx0Pip9 .collapsing,
.ezy__faq4_Dtx0Pip9 .collapse {
  background-color: var(--ezy-item-bg);
  box-shadow: var(--ezy-item-shadow);
  border-radius: 15px;
}

.ezy__faq4_Dtx0Pip9-btn-collapse {
  padding: 1rem;
  display: block;
  background-color: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.ezy__faq4_Dtx0Pip9-btn-collapse {
  text-decoration: none;
}

.faq-button-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.faq-question-text {
  font-weight: 600;
}

.faq-icon {
  margin-left: auto;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.specialist-banner {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.specialist-status {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
}

/* Specialist image styles */
.specialist-image-container {
    position: absolute;
    left: 50%; /* Center horizontally */
    bottom: 0;
    transform: translateX(-50%) translateY(50%); /* Center and move down */
}

.specialist-image {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Adjust hero section top padding */
.hero {
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    text-align: center;
    padding: 0 1rem;
}

.cta-primary {
    background-color: var(--white);
    padding: clamp(1rem, 5vw, 2rem);
    border-radius: 0;
    box-shadow: none;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-primary);
}

/* Add progress bar styles here */
.quiz-progress {
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-align: right;
}

.progress-container {
    width: 100%;
    height: 12px; /* Made slightly taller */
    background-color: #E5E7EB; /* Light gray color */
    border-radius: 10px; /* Increased border radius */
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtle shadow */
}

.progress-bar {
    height: 100%;
    background-color: #84D6A5; /* Soft green color matching the image */
    transition: width 0.3s ease;
    border-radius: 10px;
}

.cta-primary h2 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-primary);
    width: 100%;
}

.btn {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 400px; /* Set a max-width to center */
    text-align: center;
}

.btn-primary {
    background-color: var(--button-color);
    color: var(--white);
    padding: 2rem 3rem;
    font-size: 1.5rem;
}

/* Update mobile styles */
@media (max-width: 640px) {
    .cta-primary h2 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .cta-buttons {
        margin: 1rem 0;
        padding: 0;
    }

    .btn {
        width: 100%;
        max-width: 400px;
    }

    .cta-buttons .btn.btn-primary {
        padding: 1.5rem 3rem; /* Reduced from 2rem */
        font-size: 1.3rem; /* Reduced from 1.5rem */
        border-radius: 0.5rem;
    }

    .header {
        padding: 0.5rem 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        
    }

    .phone-number {
        
    }

    .specialist-image {
        width: 48px;
        height: 48px;
    }

    .hero h1 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .benefits {
        margin: 0.75rem auto;
        gap: 0.15rem;
    }

    .benefit-item {
        padding: 0.1rem;
    }

    .benefit-item p {
        font-size: 1.25rem;
    }

    .checkmark {
        font-size: 1.35rem;
    }

    .hero {
        padding-top: 40px;
    }
}

/* Even smaller screens */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.2rem;
    }

    .cta-primary h2 {
        margin-bottom: 0.75rem;
    }

    .benefits {
        margin: 0.5rem auto;
        gap: 0.1rem;
    }

    .benefit-item p {
        font-size: 1.2rem;
    }

    .cta-primary {
        padding: 0;
    }

    .cta-buttons {
        margin: 0.75rem 0;
    }

    .cta-buttons .btn.btn-primary {
        padding: 1.25rem 3rem; /* Reduced from 1.75rem */
        font-size: 1.2rem; /* Reduced from 1.4rem */
    }

    .checkmark {
        font-size: 1.3rem;
    }
}

.btn-primary:hover {
    background-color: var(--button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 15, 71, 0.1);
}

/* Benefits Section */
.benefits {
    font-size: 1.2em;
    display: table;
    flex-direction: column;
    gap: 0.25rem;
    margin: 3rem auto;
    max-width: 800px;
    align-items: center;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
    background: none;
    border-radius: 0;
    transition: var(--transition);
    color: var(--text-primary);
    width: fit-content;
}

.checkmark {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
    white-space: nowrap;
}

/* Testimonials */
.testimonials {
    padding: 55px 0;
    background-color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: grid;
    
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: var(--transition);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-image {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
}

.verified {
    color: var(--accent-color);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    color: var(--accent-color);
    margin: 1rem 0;
}

.testimonial-text {
    color: var(--text-primary);
    line-height: 1.5;
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonials h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-top: 3rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta .btn-primary {
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.0rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .specialist-banner {
        text-align: center;
    }

    .benefits, .steps {
        grid-template-columns: 1fr;
    }
}

/* Add styles for the trust indicators and badges */
.trust-indicators {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.stars {
    color: #ffd700;
    letter-spacing: 0.25rem;
}

.badges {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.badges img {
    height: 60px;
    width: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .badges img {
        height: 32px; /* Slightly smaller on mobile */
    }
}

.rating-text {
    color: var(--text-secondary);
}

/* Responsive Typography */
html {
    font-size: clamp(14px, 1vw + 10px, 16px);
}

/* Header Responsive */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0 3rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .specialist-banner {
        align-items: center;
    }

    .phone-number {
        font-size: 1.25rem;
    }
}

/* Hero Section Responsive */
@media (max-width: 640px) {
    .hero {
        background: var(--white);
        padding-top: 60px;
        padding-bottom: 0;
    }

    .hero h1 {
        padding: 0 var(--container-padding);
        margin-bottom: 2rem;
    }

    .cta-buttons {
        margin-top: 2rem;
    }

    .btn-primary {
        width: 100%;
        max-width: 400px;
    }
}

/* Benefits Responsive */
@media (max-width: 640px) {
    .benefits {
        margin: 0.75rem auto;
        gap: 0.15rem;
    }

    .benefit-item {
        padding: 0.1rem;
    }

    .benefit-item p {
        font-size: 1.25rem;
    }

    .checkmark {
        font-size: 1.35rem;
    }

    .hero {
        padding-top: 40px;
    }
}

/* Trust Indicators Responsive */
@media (max-width: 640px) {
    .trust-indicators {
        gap: 1.5rem;
    }

    .rating {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .badges {
        gap: 1rem;
    }

    .badges img {
        height: 40px;
    }
}



@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonials h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

/* How It Works Responsive */
.steps {
    gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 1024px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 641px) and (max-width: 1023px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 1.5rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }
}

/* Final CTA Responsive */
@media (max-width: 640px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .final-cta p {
        padding: 0 1rem;
    }
}

/* Footer Responsive */
@media (max-width: 640px) {
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-text {
        padding: 0 1rem;
    }
}

/* Button Responsive */
.btn {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* General Spacing Responsive */
section {
    padding: clamp(0px, 8vw, 80px) 0;
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn:hover {
        transform: none;
    }

    .step:hover {
        transform: none;
    }
}

/* Orientation Specific Adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .header {
        padding: 0.5rem 0 2.5rem;
    }

    .hero {
        padding-top: 60px;
    }
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--button-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.2rem;
}

.phone-icon {
    font-size: 1.5rem;
    animation: shake 1s infinite;
}

.call-text {
    display: flex;
    flex-direction: column;
    font-size: 1.1rem;
}

.floating-phone-number {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Responsive adjustments for floating button */
@media (max-width: 640px) {
    .floating-call-btn {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        padding: 1rem;
        display: flex;
        justify-content: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .call-btn-content {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 1.3rem;
    }

    .call-text {
        font-size: 1.2rem;
    }

    .floating-phone-number {
        font-size: 1.4rem;
    }

    /* Add padding to footer to prevent button overlap */
    .footer {
        padding-bottom: calc(40px + 3.5rem);
    }
}

/* Hide on very small screens in landscape */
@media (max-height: 400px) and (orientation: landscape) {
    .floating-call-btn {
        display: none;
    }
}

.loading-message {
    text-align: center;
    padding: 2rem 0;
}

.loading-spinner {
    margin: 2rem auto;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--button-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.result-message {
    text-align: center;
    padding: 2rem 0;
}

.call-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem auto;
    background-color: var(--button-color);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .loading-message,
    .result-message {
        padding: 1rem 0;
    }
    
    .call-now-btn {
        width: 100%;
        margin: 1.5rem auto;
    }
}

/* Ensure consistent height and positioning */
.cta-primary > div {
    min-height: 30px; /* Significantly reduced to 30px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .cta-primary > div {
        min-height: 30px; /* Keep consistent on mobile */
    }
}

/* Add styles for the online status indicator */
.online-status {
    width: 8px;
    height: 8px;
    background-color: #84D6A5;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: flicker 2s infinite;
    box-shadow: 0 0 5px #84D6A5,
                0 0 10px #84D6A5,
                0 0 15px #84D6A5;
}

@keyframes flicker {
    0% {
        opacity: 1;
        box-shadow: 0 0 5px #84D6A5,
                    0 0 10px #84D6A5,
                    0 0 15px #84D6A5;
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 3px #84D6A5,
                    0 0 6px #84D6A5;
    }
    60% {
        opacity: 1;
        box-shadow: 0 0 5px #84D6A5,
                    0 0 10px #84D6A5,
                    0 0 15px #84D6A5;
    }
    70% {
        opacity: 0.4;
        box-shadow: 0 0 3px #84D6A5,
                    0 0 6px #84D6A5;
    }
    80% {
        opacity: 1;
        box-shadow: 0 0 5px #84D6A5,
                    0 0 10px #84D6A5,
                    0 0 15px #84D6A5;
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 5px #84D6A5,
                    0 0 10px #84D6A5,
                    0 0 15px #84D6A5;
    }
}

/* Mobile styles */
@media (max-width: 640px) {
    .specialist-status {
        justify-content: center;
        text-align: center;
    }

    .online-status {
        margin-right: 4px;
        width: 6px;
        height: 6px;
    }

    .specialist-status span:last-child {
        display: inline;
        white-space: nowrap;
    }
}

/* Countdown styles */
.countdown-container {
    text-align: center;
    margin: 1rem 0;
    color: var(--text-primary);
}

.countdown-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #ff4444; /* Red color for urgency */
}

.countdown {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4444;
    animation: pulse-countdown 1s infinite;
}

@keyframes pulse-countdown {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .countdown-container {
        margin: 0.75rem 0;
    }

    .countdown-text {
        font-size: 1rem;
    }

    .countdown {
        font-size: 1.3rem;
    }
}

document.addEventListener('DOMContentLoaded', function() {
    // Your code here
    const btnYes = document.getElementById('btnYes');
    if (btnYes) {
        btnYes.addEventListener('click', () => {
            // Your event handler code
        });
    }

    const btnNo = document.getElementById('btnNo');
    if (btnNo) {
        btnNo.addEventListener('click', () => {
            alert('Sorry, this program is only available for US residents.');
        });
    }

    console.log(btnNo); // Should log the element or null
});

/* Responsive text adjustments for mobile devices */
@media (max-width: 640px) {
    .hero h1 {
        font-size: 0.9rem; /* Further reduce font size for hero section */
    }

    .cta-primary h2,
    .result-message h2,
    .final-cta h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 0.8rem; /* Further reduce font size for headings */
    }

    .cta-buttons .btn,
    .benefit-item p,
    .testimonial-text,
    .step p,
    .final-cta p,
    .legal-text p {
        font-size: 0.7rem; /* Further reduce font size for body text */
    }

    .footer-links a {
        font-size: 0.6rem; /* Further reduce font size for footer links */
    }
}