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

:root {
  --sage-green: #8FA891;
  --dark-sage: #6B8A6E;
  --coral: #D88E7F;
  --dark-coral: #C67566;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --dark-gray: #2C3E50;
  --medium-gray: #5A6C7D;
  --light-gray: #E8EAED;
  --text-dark: #1A1A1A;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

/* Loading mechanism styles */
.dynamic-content {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.dynamic-content.loaded {
    opacity: 1;
}

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

.top-banner {
  background: var(--dark-gray);
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.banner-item:hover {
  opacity: 0.8;
}

.banner-item svg {
  flex-shrink: 0;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-gray);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--dark-gray);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-items {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--sage-green);
}

.btn-nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--dark-coral);
  transform: translateY(-1px);
}

.hero {
  background: linear-gradient(135deg, rgba(245, 245, 245, 1) 0%, rgba(232, 234, 237, 1) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(143, 168, 145, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(216, 142, 127, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--sage-green) 100%);
  border-radius: 3px;
}

.hero-text p {
  font-size: 19px;
  color: var(--medium-gray);
  margin-bottom: 40px;
  margin-top: 24px;
  line-height: 1.8;
}

.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--dark-coral) 100%);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(216, 142, 127, 0.3);
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(216, 142, 127, 0.4);
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.15;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.services {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  color: var(--dark-gray);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 32px;
}

.service-content h3 {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.btn-link {
  color: var(--coral);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: var(--dark-coral);
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

.split-content-section {
  padding: 0;
  margin: 80px 0;
  background: var(--white);
}

.split-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(143, 168, 145, 0.2) 0%, rgba(216, 142, 127, 0.1) 100%);
  z-index: 1;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text {
  padding: 80px 60px;
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-text h2 {
  font-size: 38px;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.split-text > p {
  font-size: 17px;
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.split-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
}

.split-stat h4 {
  font-size: 32px;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 8px;
}

.split-stat p {
  color: var(--medium-gray);
  font-size: 15px;
}

.why-choose-us {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  text-align: left;
  padding: 48px 40px;
  background: var(--light-bg);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--sage-green) 0%, var(--coral) 100%);
  transition: height 0.4s ease;
}

.feature-card:hover::before {
  height: 100%;
}

.feature-card:hover {
  transform: translateX(8px);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
  color: var(--white);
}

.feature-card h3 {
  font-size: 22px;
  color: var(--dark-gray);
  margin-bottom: 16px;
  font-weight: 600;
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.8;
  font-size: 16px;
}

.coverage-comparison-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.comparison-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--sage-green);
}

.comparison-card.featured {
  border-color: var(--coral);
  transform: scale(1.05);
}

.comparison-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.comparison-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-header h3 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-weight: 700;
}

.comparison-subtitle {
  color: var(--medium-gray);
  font-size: 15px;
  margin-bottom: 32px;
}

.comparison-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
  text-align: left;
}

.comparison-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--medium-gray);
}

.comparison-feature svg {
  color: var(--sage-green);
  flex-shrink: 0;
}

.btn-comparison {
  display: block;
  background: var(--sage-green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-comparison:hover {
  background: var(--dark-sage);
  transform: translateY(-2px);
}

.comparison-card.featured .btn-comparison {
  background: var(--coral);
}

.comparison-card.featured .btn-comparison:hover {
  background: var(--dark-coral);
}

.trust-indicators-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.trust-text-section h2 {
  font-size: 36px;
  color: var(--dark-gray);
  margin-bottom: 20px;
  font-weight: 700;
}

.trust-text-section p {
  font-size: 17px;
  color: var(--medium-gray);
  line-height: 1.8;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 32px 20px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(143, 168, 145, 0.12);
}

.trust-badge svg {
  color: var(--coral);
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 6px;
  font-weight: 600;
}

.trust-badge-text p {
  font-size: 14px;
  color: var(--medium-gray);
}

.testimonials {
  padding: 100px 0;
  background: var(--light-bg);
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonials-container {
  flex: 1;
  position: relative;
  min-height: 200px;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 40px;
  animation: fadeIn 0.5s ease;
}

.testimonial.active {
  display: block;
}

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

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  color: var(--medium-gray);
  font-size: 16px;
}

.slider-btn {
  background: var(--sage-green);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--dark-sage);
  transform: scale(1.1);
}

.slider-btn svg {
  color: var(--white);
}

.cta-section {
  background: var(--coral);
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 32px;
}

.btn-cta-light {
  display: inline-block;
  background: var(--white);
  color: var(--coral);
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-cta-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer {
  background: linear-gradient(135deg, #1a3a2e 0%, #0f2419 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--coral);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
  color: var(--coral);
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--coral);
  margin-top: 2px;
}

.footer-contact-item a {
  display: inline;
}

.footer-contact-item a::before {
  display: none;
}

.footer-contact-item a:hover {
  padding-left: 0;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 16px;
  line-height: 1.8;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-column a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: var(--coral);
  padding-left: 8px;
}

.footer-column a:hover::before {
  width: 12px;
}

.footer-address,
.footer-hours,
.footer-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.footer-bottom {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
  padding: 4px 0;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal a:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }

  .footer-legal {
    flex-direction: column;
    gap: 16px;
  }
}

.page-hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.page-hero-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 20px;
  opacity: 0.95;
}

/* Health Insurance Hero */
.health-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--white);
}

.health-hero-diagonal {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 142, 127, 0.08) 0%, rgba(216, 142, 127, 0.15) 100%);
  transform: skewX(-12deg);
  transform-origin: top right;
}

.health-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.health-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--dark-coral) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.health-hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.health-hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 32px;
}

.health-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.health-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.health-hero-feature svg {
  color: var(--coral);
  flex-shrink: 0;
}

.health-hero-feature span {
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 15px;
}

.health-hero-image-wrapper {
  position: relative;
}

.health-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.health-hero-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  gap: 32px;
}

.health-hero-stat h3 {
  font-size: 32px;
  color: var(--coral);
  margin-bottom: 4px;
  line-height: 1;
}

.health-hero-stat p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

/* Life Insurance Hero */
.life-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  overflow: hidden;
}

.life-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}

.life-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.life-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.life-hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.life-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 48px;
}

.life-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.life-hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.life-hero-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.life-hero-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--white);
}

.life-hero-card p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.life-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.life-hero-cta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
}

.life-hero-cta-info svg {
  flex-shrink: 0;
}

.intro-section {
  padding: 100px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.intro-text h2 {
  font-size: 36px;
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.intro-text p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

.coverage-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.coverage-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coverage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.coverage-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.coverage-icon svg {
  color: var(--white);
}

.coverage-card h3 {
  font-size: 22px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.coverage-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.benefits-section {
  padding: 100px 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-grid.reverse {
  direction: rtl;
}

.benefits-grid.reverse > * {
  direction: ltr;
}

.benefits-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefits-text h2 {
  font-size: 36px;
  color: var(--dark-gray);
  margin-bottom: 32px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-check svg {
  color: var(--white);
}

.benefit-item h4 {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.benefit-item p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.process-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 12px;
}

.step p {
  color: var(--medium-gray);
  line-height: 1.6;
}

.family-image-section,
.medical-image-section {
  padding: 0;
  margin: 60px 0;
}

.family-image-section img,
.medical-image-section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.plans-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.plan-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
  border: 2px solid var(--sage-green);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-green);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.plan-card h3 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  text-align: center;
}

.plan-desc {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 28px;
  font-size: 15px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--medium-gray);
}

.plan-features li:last-child {
  border-bottom: none;
}

.btn-plan {
  display: block;
  width: 100%;
  background: var(--coral);
  color: var(--white);
  padding: 14px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: var(--dark-coral);
}

.contact-section {
  padding: 80px 0 100px;
  background: var(--light-bg);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 42px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.contact-header p {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-sidebar {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  padding: 40px 32px;
  border-radius: 12px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.contact-info-sidebar h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-info-sidebar > p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.contact-info-icon svg {
  color: var(--white);
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-content a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-info-content a:hover {
  opacity: 0.8;
}

.contact-info-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

.contact-info-hours {
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.contact-info-hours h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.95;
}

.hours-item span:first-child {
  font-weight: 500;
}

.contact-form-card {
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form-card h2 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 32px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-gray);
  font-size: 15px;
}

.required {
  color: var(--coral);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-green);
  box-shadow: 0 0 0 3px rgba(143, 168, 145, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--coral);
}

.error-message {
  color: var(--coral);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.error-message.show {
  display: block;
}

.checkbox-group {
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.checkbox-group.error {
  outline: 2px solid var(--coral);
  border-radius: 4px;
  padding: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.6;
}

.checkbox-group label a {
  color: var(--sage-green);
  text-decoration: none;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

.submit-btn:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-alert-overlay.show {
  opacity: 1;
}

.custom-alert-box {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.custom-alert-overlay.show .custom-alert-box {
  transform: scale(1);
}

.custom-alert-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.custom-alert-icon svg {
  color: var(--white);
}

.custom-alert-box h3 {
  font-size: 28px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.custom-alert-box p {
  font-size: 16px;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

.custom-alert-btn {
  background: var(--coral);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-alert-btn:hover {
  background: var(--dark-coral);
  transform: translateY(-2px);
}

.policy-content {
  padding: 80px 0;
  background: var(--light-bg);
}

.policy-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-wrapper h1 {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--dark-gray);
}

.policy-wrapper h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.policy-wrapper h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.policy-wrapper p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-wrapper strong {
  color: var(--dark-gray);
}

.policy-wrapper a {
  color: var(--sage-green);
  text-decoration: none;
}

.policy-wrapper a:hover {
  text-decoration: underline;
}

.stats-section {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dark-sage) 100%);
  padding: 80px 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-item p {
  font-size: 16px;
  opacity: 0.95;
}

.value-props-section {
  padding: 100px 0;
  background: var(--white);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-prop-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.value-prop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(143, 168, 145, 0.15);
  background: var(--white);
}

.value-prop-icon {
  width: 90px;
  height: 90px;
  background: var(--sage-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.4s ease;
}

.value-prop-card:hover .value-prop-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-prop-icon svg {
  color: var(--white);
}

.value-prop-card h3 {
  font-size: 24px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

.value-prop-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.how-it-works {
  padding: 100px 0;
  background: var(--light-bg);
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--sage-green);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(143, 168, 145, 0.15);
}

.faq-item h3 {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.who-needs-section {
  padding: 100px 0;
  background: var(--light-bg);
}

.who-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.who-needs-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 4px solid var(--coral);
}

.who-needs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(143, 168, 145, 0.15);
}

.who-needs-card h3 {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 12px;
  font-weight: 600;
}

.who-needs-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.life-faq-section {
  padding: 100px 0;
  background: var(--white);
}

.health-tips-section {
  padding: 100px 0;
  background: var(--white);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.tip-card {
  background: var(--light-bg);
  padding: 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  gap: 20px;
  align-items: start;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(143, 168, 145, 0.15);
}

.tip-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.tip-content {
  flex: 1;
  min-width: 0;
}

.tip-card h3 {
  font-size: 20px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-weight: 600;
}

.tip-card p {
  color: var(--medium-gray);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-items {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 0;
  }

  .nav-items.active {
    right: 0;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--light-gray);
  }

  .nav-menu a {
    display: block;
    padding: 16px 0;
  }

  .btn-nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .hero-content,
  .intro-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

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

  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .who-needs-grid {
    grid-template-columns: 1fr;
  }

  .tips-grid {
    grid-template-columns: 1fr;
  }

  .tip-card {
    padding: 24px;
    gap: 16px;
  }

  .tip-number {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .tip-card h3 {
    font-size: 18px;
  }

  .tip-card p {
    font-size: 15px;
  }

  .health-hero {
    padding: 80px 0 60px;
  }

  .health-hero-diagonal {
    display: none;
  }

  .health-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .health-hero-image img {
    height: 400px;
  }

  .health-hero-stats {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .life-hero {
    padding: 80px 0;
  }

  .life-hero-content h1 {
    font-size: 36px;
  }

  .life-hero-cards {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-info-sidebar {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .split-content-wrapper {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 400px;
  }

  .split-text {
    padding: 60px 32px;
  }

  .split-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .comparison-card.featured {
    transform: scale(1);
  }

  .comparison-card.featured:hover {
    transform: translateY(-12px);
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .policy-wrapper {
    padding: 40px 28px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .banner-content {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .slider-btn {
    order: 2;
  }

  .testimonials-container {
    order: 1;
  }

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

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

  .life-hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 34px;
  }

  .hero-text h1::after {
    width: 60px;
    height: 4px;
  }

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

  .section-header h2 {
    font-size: 28px;
  }

  .contact-header h1 {
    font-size: 32px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 42px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .health-hero-features {
    flex-direction: column;
    gap: 16px;
  }

  .health-hero-image img {
    height: 300px;
  }

  .health-hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }

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

  .life-hero-subtitle {
    font-size: 16px;
  }

  .life-hero-icon {
    width: 64px;
    height: 64px;
  }

  .life-hero-icon svg {
    width: 36px;
    height: 36px;
  }

  .life-hero-card {
    padding: 20px 16px;
  }

  .split-text h2 {
    font-size: 28px;
  }

  .split-text {
    padding: 48px 24px;
  }

  .trust-text-section h2 {
    font-size: 28px;
  }

  .comparison-header h3 {
    font-size: 24px;
  }

  .tip-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
  }

  .tip-number {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-bottom: 4px;
  }

  .tip-card h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .tip-card p {
    font-size: 14px;
    line-height: 1.6;
  }
}
