.aca-hero {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
  background: url("../images/aca-obama care.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.aca-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.aca-hero-content {
  color: #fff;
  max-width: 800px;
}

.aca-hero .aca-breadcrumbs {
  font-size: 16px;
  margin-bottom: 15px;
  color: #d1d5db;
}

.aca-hero .aca-breadcrumbs a {
  color: #fff;
  font-size: 20px;
}

.aca-hero .aca-breadcrumbs a:hover {
  text-decoration: underline;
}

.aca-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Roboto", Arial, sans-serif;
}

.aca-hero .aca-description {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

/* ACA Personal Plan styling */
/* Section */
.plan-section {
  background: #f4f4f4;
  padding: 80px 8%;
  font-family: Arial, sans-serif;
}

/* Container */
.plan-container {
  display: flex;
  align-items: center; /* Vertical alignment */
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* Left Content */
.plan-content {
  flex: 1;
}

.plan-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

/* List */
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list li {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  font-size: 17px;
  color: #444;
}

.plan-list li:last-child {
  border-bottom: none;
}

.check {
  width: 24px;
  height: 24px;
  border: 2px solid #3abf8c;
  border-radius: 50%;
  color: #3abf8c;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

/* Right Image */
.plan-image {
  flex: 1;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .plan-container {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .plan-content,
  .plan-image {
    width: 100%;
  }

  .plan-content h2 {
    font-size: 26px;
  }
}

/* Feature section styling */
:root {
  --primary-color: #4f46e5;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-card: #ffffff;
}

.features-container {
  padding: 80px 20px;
  background-color: #f9fafb;
  font-family: "Inter", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #efeff0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #4e48de;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.feature-card:hover .icon-wrapper {
  background: var(--primary-color);
}

.feature-card svg {
  width: 28px;
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}

.feature-card:hover svg {
  fill: #ffffff;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.feature-link {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-card:hover .feature-link {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 992px) {
  .features-section {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .feature-box {
    max-width: 45%; /* 2 per row */
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .feature-box {
    max-width: 100%; /* Full width on small screens */
  }
}

/* Plans section styling */

/* Color Variables */
:root {
  --aca-blue: #2c3e50;
  --aca-green: #10b981;
  --aca-red: #ef5b4c;
  --aca-gray: #f8f9fa;
  --text-dark: #333333;
  --text-muted: #7f8c8d;
}

.aca-pricing-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: "Inter", sans-serif;
}

.aca-header {
  text-align: center;
  margin-bottom: 50px;
}

.aca-header h2 {
  font-size: 2.5rem;
  color: var(--aca-blue);
  margin-bottom: 10px;
}

.aca-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Card Styling */
.plan-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  width: 350px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.featured-plan {
  border: 2px solid var(--aca-green);
  transform: scale(1.03);
}

.plan-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.plan-body {
  padding: 30px;
  text-align: center;
}

.plan-title {
  font-size: 1.4rem;
  color: var(--aca-blue);
  margin-bottom: 10px;
}

.aca-price {
  margin: 20px 0;
  color: #4e48de;
  font-weight: 800;
}

.aca-price .amount {
  font-size: 3.5rem;
}

.aca-price .currency,
.aca-price .period {
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Benefit List Styling */
.benefit-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

.benefit-item {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.benefit-item.included::before {
  content: "✔";
  color: var(--aca-green);
  margin-right: 12px;
  font-weight: bold;
}

.benefit-item.excluded {
  color: #ccc;
  text-decoration: line-through;
}

.benefit-item.excluded::before {
  content: "✕";
  color: #ccc;
  margin-right: 12px;
}

/* Button Styling */
.aca-btn {
  background: #4e48de;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 80%;
}

.aca-btn:hover {
  opacity: 0.85;
}

.aca-btn.primary {
  background: var(--aca-red);
  box-shadow: 0 4px 15px rgba(239, 91, 76, 0.3);
}

/* ACA Coverage section styling */
/* ─── Google Font Import ─────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* ─── ACA Section ────────────────────────────────────────── */
.aca-benefits {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafafa 100%);
  font-family: "Inter", sans-serif;
}

.aca-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Image ──────────────────────────────────────────────── */
.aca-image {
  flex: 1;
  min-width: 0;
  position: relative;
}

/* Decorative accent behind image */
.aca-image::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0077cc, #00c6ff);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.15;
}

.aca-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 20px 60px rgba(0, 119, 204, 0.15);
}

/* ─── Content ────────────────────────────────────────────── */
.aca-content {
  flex: 1;
  min-width: 0;
}

/* Eyebrow label */
.aca-content::before {
  content: "HEALTH COVERAGE";
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #0077cc;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.aca-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.25;
  margin: 0 0 18px 0;
}

.aca-content h2 span {
  background: linear-gradient(90deg, #0077cc, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.aca-content p {
  font-size: 1rem;
  color: #6b7a8d;
  line-height: 1.8;
  margin: 0 0 28px 0;
}

/* ─── List ───────────────────────────────────────────────── */
.aca-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aca-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2d3748;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.aca-content ul li:hover {
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.12);
  transform: translateY(-2px);
}

/* Replace ✔ with a styled badge */
.aca-content ul li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #0077cc, #00c6ff);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
}

/* Hide the original ✔ character */
.aca-content ul li {
  /* We prepend via ::before, so hide inline ✔ */
  text-indent: 0;
}

/* ─── Button ─────────────────────────────────────────────── */
.aca-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0077cc, #00c6ff);
  color: #fff;
  padding: 15px 36px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(0, 119, 204, 0.35);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Shine sweep effect */
.aca-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.aca-btn:hover::after {
  left: 130%;
}

.aca-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 119, 204, 0.45);
}

.aca-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.3);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .aca-container {
    gap: 40px;
  }

  .aca-content h2 {
    font-size: 1.8rem;
  }

  .aca-content ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .aca-benefits {
    padding: 60px 16px;
  }

  .aca-container {
    flex-direction: column;
  }

  .aca-image img {
    height: 260px;
  }

  .aca-image::before {
    top: -10px;
    left: -10px;
  }

  .aca-content h2 {
    font-size: 1.5rem;
  }

  .aca-btn {
    width: 100%;
    justify-content: center;
  }
}
