.c411-landingpage .c411-landingpage-section-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 2rem 0;
}
.c411-landingpage-faq {
  background-color: #eee;
  padding: 2rem;
  margin: 0 0 2rem 0;
}
.c411-landingpage-faq h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 2rem 0;
}
.c411-landingpage-faq > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 1rem;
}
.c411-landingpage-faq > ul > li {
  background-color: #fff;
  border-radius: 1rem;
  flex: 1;
  padding: 1rem;
}
.c411-landingpage-faq > ul > li h3 {
  margin: 0 0 1rem 0;
}

/* ========================================
   PROGRAM COMPARISON TABLE - CIC BRANDING
   Navy: #0C3073 | Red: #d72e2a
   ======================================== */

.c411-landingpage .c411-program-comparison {
  margin: 0 0 3rem 0;
  padding: 2rem 0;
}

.c411-landingpage .c411-program-comparison h2 {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 1rem 0;
  color: #0C3073;
}

.c411-landingpage .c411-program-comparison .intro-text {
  text-align: center;
  font-size: 1.125rem;
  color: #666;
  margin: 0 0 2rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.c411-landingpage .comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.c411-landingpage .comparison-column {
  background: #fff;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.c411-landingpage .comparison-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #0C3073;
}

.c411-landingpage .comparison-column .program-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0C3073;
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c411-landingpage .comparison-column h3 {
  text-align: center;
  font-size: 1.5rem;
  color: #1a2332;
  margin: 1rem 0 1rem 0;
}

.c411-landingpage .comparison-column .duration,
.c411-landingpage .comparison-column .salary {
  text-align: center;
  font-weight: 700;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.c411-landingpage .comparison-column .duration {
  color: #0C3073;
  font-size: 1.125rem;
}

.c411-landingpage .comparison-column .salary {
  color: #00a651;
  font-size: 1.25rem;
}

.c411-landingpage .comparison-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #666;
  margin: 1.5rem 0 0.75rem 0;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.c411-landingpage .comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.c411-landingpage .comparison-column ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.c411-landingpage .comparison-column ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d72e2a;
  font-weight: bold;
}

.c411-landingpage .comparison-column p {
  color: #555;
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .c411-landingpage .comparison-table {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .c411-landingpage .comparison-column {
    padding: 1.5rem;
  }
}

/* ========================================
   ENHANCED FEATURES SECTION - CIC BRANDING
   "Why Choose a {Cluster Category}?"
   Navy: #0C3073 | Red: #d72e2a
   ======================================== */

.c411-landingpage .c411-landingpage-features {
  margin: 3rem 0;
  padding: 0;
}

.c411-landingpage .c411-landingpage-features h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0C3073;
  margin: 0 0 1rem 0;
  position: relative;
  padding-bottom: 1rem;
}

/* Decorative underline - solid red */
.c411-landingpage .c411-landingpage-features h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d72e2a;
  border-radius: 2px;
}

.c411-landingpage .c411-landingpage-features > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 0;
}

.c411-landingpage .c411-landingpage-features > ul > li {
  position: relative;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(12, 48, 115, 0.08);
}

/* Hover effect - lift card and show navy border */
.c411-landingpage .c411-landingpage-features > ul > li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(12, 48, 115, 0.15);
  border-color: #0C3073;
}

/* Solid red circle with checkmark */
.c411-landingpage .c411-landingpage-features > ul > li::before {
  content: '✓';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #d72e2a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(215, 46, 42, 0.3);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

/* On hover: add navy border around the circle */
.c411-landingpage .c411-landingpage-features > ul > li:hover::before {
  border-color: #0C3073;
  box-shadow: 0 6px 16px rgba(12, 48, 115, 0.3);
}

.c411-landingpage .c411-landingpage-features > ul > li h3 {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0C3073;
  margin: 1.5rem 0 1rem 0;
  line-height: 1.3;
}

.c411-landingpage .c411-landingpage-features > ul > li p {
  text-align: center;
  color: #4b5563;
  line-height: 1.7;
  font-size: 0.9375rem;
  margin: 0;
}

/* ========================================
   ENHANCED BENEFITS SECTION - CIC BRANDING
   "Program Benefits"
   Navy: #0C3073 | Red: #d72e2a
   ======================================== */

.c411-landingpage .c411-landingpage-benefits {
  background: #f8f9fa;
  padding: 3rem 2rem;
  margin: 4rem 0;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* Subtle accent stripe at top */
.c411-landingpage .c411-landingpage-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0C3073;
}

.c411-landingpage .c411-landingpage-benefits h2 {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #0C3073;
  margin: 0 0 1rem 0;
  position: relative;
  padding-bottom: 1rem;
  z-index: 1;
}

/* Decorative underline - solid red */
.c411-landingpage .c411-landingpage-benefits h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d72e2a;
  border-radius: 2px;
}

.c411-landingpage .c411-landingpage-benefits > ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 2rem 0 0 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.c411-landingpage .c411-landingpage-benefits > ul > li {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 16px rgba(12, 48, 115, 0.12);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Blue accent bar on left */
.c411-landingpage .c411-landingpage-benefits > ul > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #4a7fc1;
  transition: width 0.3s ease;
}

/* Hover effect - expand accent bar */
.c411-landingpage .c411-landingpage-benefits > ul > li:hover::before {
  width: 8px;
}

.c411-landingpage .c411-landingpage-benefits > ul > li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(12, 48, 115, 0.18);
  border-color: #0C3073;
}

.c411-landingpage .c411-landingpage-benefits > ul > li h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0C3073;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}

.c411-landingpage .c411-landingpage-benefits > ul > li ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c411-landingpage .c411-landingpage-benefits > ul > li ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
}

/* Red checkmark bullets */
.c411-landingpage .c411-landingpage-benefits > ul > li ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d72e2a;
  font-weight: 700;
  font-size: 1.1rem;
}

.c411-landingpage .c411-landingpage-benefits > ul > li ul li:last-child {
  margin-bottom: 0;
}


/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .c411-landingpage .c411-landingpage-features h2,
  .c411-landingpage .c411-landingpage-benefits h2 {
    font-size: 1.75rem;
  }

  .c411-landingpage .c411-landingpage-features > ul,
  .c411-landingpage .c411-landingpage-benefits > ul {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .c411-landingpage .c411-landingpage-features > ul > li {
    padding: 2rem 1.5rem;
  }

  .c411-landingpage .c411-landingpage-benefits {
    padding: 2.5rem 1.5rem;
    margin: 3rem -1.5rem;
    border-radius: 0;
  }
}
/*# sourceMappingURL=./landing-page.css.map */