/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a75bc;
  --primary-dark: #145e96;
  --accent-color: #e74c3c;
  --accent-dark: #c0392b;
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-light);
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Banner */
.top-banner {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.top-banner.hidden {
  display: none;
}

.top-banner p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.top-banner span {
  margin: 0 15px;
  display: inline-flex;
  align-items: center;
}

/* Header */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  transition: var(--transition);
}

.logo img:hover {
  transform: scale(1.02);
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover {
  color: var(--primary-color);
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a.nav-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

nav ul li a.nav-cta:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
}

nav ul li a.nav-cta::after {
  display: none;
}

nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  z-index: 2;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-btn.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e9f5ff 0%, #d4e9ff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://g-storage.slumber.one/clinic/assets/TX/bg-pattern.png");
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 20px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 0;
  color: var(--text-light);
  line-height: 1.7;
}

.hero-image {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
  transform: translateY(0);
}

.cta-button:hover {
  background-color: var(--accent-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* Make CTAs inside clinician cards a bit shorter than the home hero CTA */
.clinician-info .cta-button {
  padding: 10px 24px;
  font-size: 16px;
}

/* New Section */
.new-section {
  padding: 0;
  background-color: var(--bg-light);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}

.new-section .hero-image {
  width: 100%;
  height: 100%;
}

.new-section .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Insurance Section */
.insurance {
  padding: 50px 0;
  text-align: center;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.insurance h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.insurance-subheadline {
  margin-bottom: 50px;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


.insurance-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.insurance-logos img {
  height: 65px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition);
}

.insurance-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.bcbs-logo {
  height: 35px !important;
}

.cigna-logo {
  height: 55px !important;
}

.medicare-logo {
  height: 25px !important;
}

/* CBT-I Section */
.cbti-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #e9f5ff 0%, #d4e9ff 100%);
}

.cbti-section h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.cbti-subheadline {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cbti-copy {
  margin-bottom: 40px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cbti-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cbti-card {
  background-color: #e8f5e9;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  flex: 0 0 calc(20% - 16px);
  min-width: 180px;
}

.cbti-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
}

.cbti-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
}

.cbti-subtitle {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.cbti-expert-copy {
  margin-bottom: 30px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.medical-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.medical-logos img {
  height: 45px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: var(--transition);
}

.medical-logos img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.cbti-benefits-intro {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cbti-benefits {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cbti-benefits li {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.cbti-benefits li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

.cbti-benefits {
  counter-reset: list-counter;
}

.success-card {
  background-color: #e8f5e9;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
}

.success-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.success-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}

/* Ready Section */
.ready-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-white);
}

.ready-section h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.ready-copy {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ready-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ready-card {
  background-color: #e8f5e9; /* light green */
  border: 2px solid var(--primary-color); /* blue outline */
  border-radius: var(--border-radius);
  padding: 24px;
  text-align: center;
}

.ready-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.ready-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.ready-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.ready-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary-color);
}

@media (max-width: 768px) {
  .ready-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.info-section h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.info-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 117, 188, 0.2);
}

/* Welcome Section */
.welcome {
  padding: 80px 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: var(--primary-color);
  opacity: 0.03;
  border-radius: 50%;
}

.welcome::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  opacity: 0.03;
  border-radius: 50%;
}

.welcome h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}


.welcome-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.welcome-content p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Clinicians Page */
.clinicians {
  padding: 80px 0;
}

.clinicians h1 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}


.clinician-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

.clinician-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  max-width: 380px;
  margin: 0 auto;
}

.clinician-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.clinician-image {
  height: 400px;
  margin: 20px 20px 0 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.clinician-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.clinician-card:hover .clinician-image img {
  transform: scale(1.05);
}

.clinician-info {
  padding: 30px;
}

.clinician-info h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
}

/* How It Works Page */
.how-it-works {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.how-it-works h1 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}


.steps {
  max-width: 1100px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 40px;
  width: 2px;
  height: calc(100% - 40px);
  background-color: rgba(26, 117, 188, 0.2);
  z-index: 1;
}

.step-number {
  flex: 0 0 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-right: 30px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step:hover .step-content {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
}

.step-content p {
  color: var(--text-light);
  line-height: 1.7;
}

/* CBTI Info */
.cbti-info {
  margin-top: 80px;
  padding: 40px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.cbti-info h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
}

.cbti-info p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Policy */
.policy {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.policy h1 {
  text-align: center;
  margin-bottom: 60px;
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}


.policy-content {
  max-width: 1100px;
  margin: 0 auto;
}

.policy-section {
  margin-bottom: 40px;
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.policy-section h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(26, 117, 188, 0.2);
}

.policy-section p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: #1a3e66;
  color: white;
  padding: 60px 0 30px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .insurance-logos img {
    height: 45px;
  }

  .bcbs-logo {
    height: 25px !important;
  }

  .cigna-logo {
    height: 38px !important;
  }

  .medicare-logo {
    height: 18px !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 4px 0;
  }

  .header-content {
    position: relative;
  }

  .logo {
    z-index: 2;
    margin-top: 0;
  }

  .logo img {
    height: 42px;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    padding: 60px 0 0 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    overflow: hidden;
  }

  nav ul.active {
    display: flex;
    animation: fadeIn 0.3s ease-in-out;
  }

  nav ul li {
    margin: 4px 0;
    width: 85%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    font-size: 18px;
    padding: 8px;
    width: 100%;
    border-radius: var(--border-radius);
    transition: var(--transition);
  }

  nav ul li a:hover {
    background-color: rgba(26, 117, 188, 0.1);
  }

  nav ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
  }

  nav ul li a.active::after {
    width: 100%;
    height: 3px;
  }

/* Compact CTA button usable outside nav (matches nav-cta look) */
a.nav-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: inline-block;
}

a.nav-cta:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  color: white;
}

/* Ensure CTA buttons in cards render like nav button */
a.nav-cta:visited {
  color: white;
}

.clinician-info a.nav-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  display: inline-block;
}

  nav ul li a.nav-cta {
    margin-top: 10px;
    font-size: 18px;
    padding: 12px;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 2;
  }

  .step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .info-card,
  .policy-section,
  .clinician-info {
    padding: 25px;
  }

  .clinician-image {
    height: 320px;
    margin: 15px 15px 0 15px;
  }

  .hero-text {
    padding-bottom: 15px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 18px;
  }
}

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

@media (max-width: 480px) {
  .top-banner span {
    display: block;
    margin: 5px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }

  .insurance-logos {
    gap: 12px;
    max-width: 300px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .insurance-logos img {
    height: 32px;
    flex: 0 0 calc(33.333% - 8px);
    max-width: none;
    object-fit: contain;
  }

  .bcbs-logo {
    height: 20px !important;
  }

  .cigna-logo {
    height: 28px !important;
  }

  .medicare-logo {
    height: 18px !important;
  }

  .cbti-cards {
    gap: 15px;
    margin-top: 30px;
  }

  .cbti-card {
    flex: 0 0 calc(50% - 7.5px);
    min-width: 150px;
    padding: 15px;
  }

  .cbti-card h3 {
    font-size: 14px;
  }

  .cbti-card p {
    font-size: 12px;
  }

  .medical-logos {
    gap: 20px;
  }

  .medical-logos img {
    height: 35px;
  }

  .success-card {
    margin: 30px auto 0;
    padding: 20px;
    max-width: 400px;
  }

  .success-card h3 {
    font-size: 28px;
  }

  .success-card p {
    font-size: 14px;
  }

  .info-section h2,
  .welcome h2,
  .clinicians h1,
  .how-it-works h1,
  .policy h1 {
    font-size: 26px;
  }

  .info-card h3,
  .clinician-info h3,
  .step-content h3 {
    font-size: 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-card,
.step,
.clinician-card {
  opacity: 0;
  transform: translateY(20px);
}

.info-card.animate,
.step.animate,
.clinician-card.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.info-card:nth-child(2).animate {
  animation-delay: 0.2s;
}

.info-card:nth-child(3).animate {
  animation-delay: 0.4s;
}

.step:nth-child(2).animate {
  animation-delay: 0.2s;
}

.step:nth-child(3).animate {
  animation-delay: 0.4s;
}

.clinician-card:nth-child(2).animate {
  animation-delay: 0.2s;
}

.clinician-card:nth-child(3).animate {
  animation-delay: 0.4s;
}
