/* ============================================================================
   ABOUT US PAGE - MODERN REDESIGN
   ============================================================================
   Description: Comprehensive styling for about-us.html
   Theme: Matches index.html modern design with enhanced visual hierarchy
   Last Updated: November 7, 2025
   ============================================================================ */

/* Ensure no horizontal overflow on body and html */
html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Reset for main element */
main {
  overflow-x: hidden;
  width: 100%;
}

/* Ensure all sections take full width without gaps */
section {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Prevent Bootstrap rows from causing overflow - only within main content */
main .row {
  margin-left: 0;
  margin-right: 0;
}

/* Ensure columns don't cause overflow - only within main content */
main [class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 576px) {
  main [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Base container adjustments for responsiveness */
.about-hero .container,
.mission-vision-section .container,
.values-section .container,
.about-medicare-section .container {
  width: 100%;
  max-width: 1320px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 576px) {
  .about-hero .container,
  .mission-vision-section .container,
  .values-section .container,
  .about-medicare-section .container {
    padding-right: 12px;
    padding-left: 12px;
  }
}

/* ============================================================================
   1. HERO SECTION
   ============================================================================ */

.about-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary);
  padding: 3rem 1rem;
  width: 100%;
  margin: 0;
}

/* Animated geometric pattern background */
.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      30deg,
      transparent 40%,
      rgba(95, 160, 10, 0.15) 40%,
      rgba(95, 160, 10, 0.15) 60%,
      transparent 60%
    ),
    linear-gradient(
      150deg,
      transparent 40%,
      rgba(255, 255, 255, 0.05) 40%,
      rgba(255, 255, 255, 0.05) 60%,
      transparent 60%
    );
  background-size: 120px 120px;
  background-position: 0 0, 60px 60px;
  animation: patternMove 20s linear infinite;
  z-index: 1;
  opacity: 0.6;
}

/* Gradient overlay for depth */
.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(95, 160, 10, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(0, 60, 48, 0.3) 0%,
      transparent 50%
    );
  z-index: 1;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 60px 60px;
  }
  100% {
    background-position: 120px 120px, 180px 180px;
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    transform: scale(1.05);
  }
}

.about-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
}

/* Underline decoration */
.about-hero h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.about-hero .hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Shine effect on hover */
.about-hero .hero-subtitle::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.about-hero .hero-subtitle:hover::before {
  transform: translateX(100%);
}

.about-hero .hero-subtitle:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Optional: Add scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ============================================================================
   2. MISSION & VISION CARDS
   ============================================================================ */

.mission-vision-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface-green-50) 100%);
  padding: 80px 0;
  position: relative;
  width: 100%;
  margin: 0;
}

.mission-vision-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 60, 48, 0.08);
  border-left: 5px solid var(--color-primary);
  border-top: 1px solid rgba(0, 60, 48, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(95, 160, 10, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(40%, -40%);
  transition: all 0.4s ease;
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 60, 48, 0.15);
  border-left-width: 8px;
}

.mission-vision-card:hover::before {
  transform: translate(30%, -30%) scale(1.5);
  background: radial-gradient(
    circle,
    rgba(95, 160, 10, 0.08) 0%,
    transparent 70%
  );
}

.mission-vision-card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 60, 48, 0.2);
  transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(95, 160, 10, 0.3);
}

.mission-vision-card .card-icon i {
  font-size: 2rem;
  color: #fff;
}

.mission-vision-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.mission-vision-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.mission-vision-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.mission-vision-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.mission-vision-card ul li i {
  font-size: 1.25rem;
  color: var(--color-primary-hover);
  margin-right: 1rem;
  margin-top: 0.25rem;
  min-width: 30px;
  transition: transform 0.3s ease;
}

.mission-vision-card:hover ul li i {
  transform: scale(1.15);
}

/* ============================================================================
   3. VALUES SECTION
   ============================================================================ */

.values-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.values-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 60, 48, 0.02) 8%, transparent 8%)
    repeat;
  background-size: 50px 50px;
  opacity: 0.5;
  z-index: 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

/* Value Cards */
.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 60, 48, 0.15);
  border-color: var(--color-primary-hover);
}

.value-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(
    135deg,
    var(--surface-green-100),
    var(--surface-green-150)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 20px rgba(95, 160, 10, 0.2);
  position: relative;
}

.value-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.value-card:hover .value-icon {
  transform: translateY(-5px) rotate(-8deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(95, 160, 10, 0.3);
}

.value-card:hover .value-icon::after {
  opacity: 0.15;
}

.value-icon i {
  font-size: 2.5rem;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
  color: var(--color-primary-hover);
  transform: scale(1.1);
}

.value-card h4 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.value-card:hover h4 {
  color: var(--color-primary-hover);
}

.value-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================================
   4. ABOUT MEDICARE SECTION
   ============================================================================ */

.about-medicare-section {
  background: linear-gradient(135deg, var(--surface-green-50) 0%, #fff 100%);
  padding: 80px 0;
  width: 100%;
  margin: 0;
}

.medicare-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.medicare-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}

.medicare-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.medicare-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 60, 48, 0.15);
  transition: all 0.4s ease;
}

.medicare-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 60, 48, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.medicare-image:hover::before {
  opacity: 1;
}

.medicare-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 60, 48, 0.2);
}

.medicare-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

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

.btn-medicare {
  background: var(--color-primary);
  color: #fff;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 60, 48, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-medicare:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 60, 48, 0.35);
  background: var(--color-primary-hover);
  color: #fff;
}

/* ============================================================================
   5. CTA SECTION
   ============================================================================ */

.about-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a5c3d 100%);
  padding: 80px 0;
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.about-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 15% 25%,
      rgba(95, 160, 10, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 40%
    );
  z-index: 0;
}

.cta-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.cta-content {
  padding-right: 2rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

.feature-item i {
  color: var(--color-primary-hover);
  font-size: 1.25rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-cta-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #004d3e 100%);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 60, 48, 0.3);
}

.btn-cta-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 60, 48, 0.4);
  color: #fff;
}

.btn-cta-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-cta-secondary:hover {
  background: var(--color-secondary-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 60, 48, 0.2);
}

.btn-cta-primary i,
.btn-cta-secondary i {
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-secondary:hover i {
  transform: scale(1.1);
}

/* ============================================================================
   6. RESPONSIVE DESIGN
   ============================================================================ */

/* Large tablets and below (1199px) */
@media (max-width: 1199px) {
  .about-hero {
    min-height: 550px;
    padding: 3.5rem 1rem;
  }

  .about-hero-content::before {
    width: 70px;
    height: 70px;
  }

  .about-hero-content::after {
    font-size: 2rem;
  }

  .mission-vision-section,
  .values-section,
  .about-medicare-section {
    padding: 70px 0;
  }

  .about-cta-section {
    padding: 70px 0;
  }

  .cta-card {
    padding: 2.5rem 2rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }
}

/* Tablets and below (991px) */
@media (max-width: 991px) {
  .about-hero {
    min-height: 500px;
    padding: 3rem 1rem;
  }

  .about-hero-content::before {
    width: 65px;
    height: 65px;
    margin-bottom: 1.5rem;
  }

  .about-hero-content::after {
    font-size: 1.75rem;
    top: 1.75rem;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
  }

  .about-hero h1::after {
    width: 80px;
    height: 3px;
    margin-top: 1.25rem;
  }

  .about-hero .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.35rem);
    padding: 0.875rem 2rem;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  .scroll-indicator i {
    font-size: 1.75rem;
  }

  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-vision-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .mission-vision-card h3 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.05rem;
  }

  .medicare-content {
    flex-direction: column;
    gap: 2rem;
  }

  .medicare-text {
    order: 2;
  }

  .medicare-image {
    order: 1;
  }

  .values-section,
  .about-medicare-section {
    padding: 60px 0;
  }

  .value-card {
    margin-bottom: 2rem;
  }

  .about-cta-section {
    padding: 60px 0;
  }

  .cta-card {
    padding: 2.5rem 2rem;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .cta-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-features {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-buttons {
    gap: 0.875rem;
  }
}

/* Mobile devices (767px) */
@media (max-width: 767px) {
  /* Reduce row gap on mobile to prevent overflow */
  .row.g-4 {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }

  .about-hero {
    min-height: 400px;
    padding: 2.5rem 0.75rem;
  }

  .about-hero-content::before {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
    border-width: 2px;
  }

  .about-hero-content::after {
    font-size: 1.5rem;
    top: 1.5rem;
  }

  .about-hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: 1rem;
    letter-spacing: 0;
  }

  .about-hero h1::after {
    width: 70px;
    height: 3px;
    margin-top: 1rem;
  }

  .about-hero .hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    padding: 0.75rem 1.75rem;
    border-width: 1.5px;
  }

  .scroll-indicator {
    bottom: 1.25rem;
  }

  .scroll-indicator i {
    font-size: 1.5rem;
  }

  .mission-vision-section {
    padding: 50px 0;
  }

  .mission-vision-card {
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.75rem;
  }

  .mission-vision-card h3 {
    font-size: 1.5rem;
  }

  .mission-vision-card .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }

  .mission-vision-card .card-icon i {
    font-size: 1.75rem;
  }

  .mission-vision-card p {
    font-size: 1rem;
  }

  .mission-vision-card ul li {
    font-size: 0.95rem;
    margin-bottom: 0.875rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .value-card {
    padding: 1.75rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  .value-icon {
    width: 80px;
    height: 80px;
  }

  .value-icon i {
    font-size: 2.2rem;
  }

  .value-card h4 {
    font-size: 1.2rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }

  .medicare-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .medicare-text p {
    font-size: 1rem;
    text-align: center;
  }

  .btn-medicare {
    padding: 12px 30px;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }

  .values-section,
  .about-medicare-section {
    padding: 50px 0;
  }

  .about-cta-section {
    padding: 50px 0;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
  }

  .feature-item {
    justify-content: center;
  }

  .cta-buttons {
    gap: 0.75rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* Extra small devices (576px) */
@media (max-width: 576px) {
  /* Further reduce row gap on small mobile */
  .row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .about-hero {
    min-height: 350px;
    padding: 2rem 0.5rem;
  }

  .about-hero-content::before {
    width: 55px;
    height: 55px;
    margin-bottom: 1rem;
  }

  .about-hero-content::after {
    font-size: 1.35rem;
    top: 1.35rem;
  }

  .about-hero h1 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
  }

  .about-hero h1::after {
    width: 60px;
    height: 2px;
    margin-top: 0.875rem;
  }

  .about-hero .hero-subtitle {
    font-size: 0.95rem;
    padding: 0.625rem 1.5rem;
  }

  .scroll-indicator {
    bottom: 1rem;
  }

  .scroll-indicator i {
    font-size: 1.35rem;
  }

  .mission-vision-section {
    padding: 40px 0;
  }

  .mission-vision-card {
    padding: 1.5rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }

  .mission-vision-card h3 {
    font-size: 1.35rem;
  }

  .mission-vision-card .card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }

  .mission-vision-card .card-icon i {
    font-size: 1.5rem;
  }

  .mission-vision-card ul li {
    font-size: 0.9rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

  .value-icon {
    width: 75px;
    height: 75px;
  }

  .value-icon i {
    font-size: 2rem;
  }

  .value-card h4 {
    font-size: 1.15rem;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  .about-cta-section {
    padding: 40px 0;
  }

  .cta-card {
    padding: 1.75rem 1.25rem;
  }

  .cta-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }

  .cta-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .cta-features {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    font-size: 0.9rem;
  }

  .feature-item i {
    font-size: 1rem;
  }

  .cta-buttons {
    gap: 0.625rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .medicare-text h2 {
    font-size: 1.75rem;
  }

  .medicare-text p {
    font-size: 0.95rem;
  }

  .btn-medicare {
    padding: 11px 28px;
    font-size: 0.95rem;
  }

  .values-section,
  .about-medicare-section {
    padding: 40px 0;
  }
}

/* Very small devices (480px) */
@media (max-width: 480px) {
  .about-hero {
    min-height: 330px;
  }

  .about-hero-content::before {
    width: 50px;
    height: 50px;
  }

  .about-hero-content::after {
    font-size: 1.25rem;
    top: 1.25rem;
  }

  .about-hero h1 {
    font-size: 1.5rem;
  }

  .about-hero h1::after {
    width: 50px;
  }

  .about-hero .hero-subtitle {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }

  .scroll-indicator i {
    font-size: 1.25rem;
  }

  .mission-vision-card {
    padding: 1.25rem 1rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .value-icon {
    width: 70px;
    height: 70px;
  }

  .value-icon i {
    font-size: 1.75rem;
  }

  .about-cta-section {
    padding: 35px 0;
  }

  .cta-card {
    padding: 1.5rem 1rem;
  }

  .cta-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .cta-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .cta-features {
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .feature-item i {
    font-size: 0.95rem;
  }

  .cta-buttons {
    gap: 0.5rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 11px 24px;
    font-size: 0.9rem;
  }
}

/* ============================================================================
   LEGACY STYLES (Maintained for backward compatibility)
   ============================================================================ */

.bg-gradient {
  background-color: linear-gradient(green, red);
}

.gradient-text {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6);
}