/* Community Section Support Icons Row */
.support-icons-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  justify-content: center;
  align-items: start;
  max-width: 700px;
  margin: 60px auto 0 auto;
}

.support-icon-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}
.support-icon-item:hover {
  box-shadow: var(--shadow-lg);
}
/* Base Reset & Variables */
:host {
  --primary-color: #FF4338;
  --primary-hover: #E0352B;
  --text-dark: #1F2937;
  --text-gray: #4B5563;
  --text-light: #9CA3AF;
  --bg-light: #FFF9F8;
  --white: #FFFFFF;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --fs-eyebrow: 0.75rem;
  --fs-body-sm: 0.9375rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-subtitle: 1.25rem;
  --fs-h3: 1.5rem;
  --fs-h2: clamp(2.25rem, 4vw, 2.875rem);
  --fs-h1: clamp(3rem, 6vw, 4.5rem);
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.65;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary-color);
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(255, 67, 56, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
}

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-bg-alt {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 20px;
  color: #111;
}

.section-header p {
  font-size: var(--fs-subtitle);
  color: var(--text-gray);
}

/* 1. Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  max-height: 800px;
  height: 80vh;
  background: url('https://filemanager-static01.italki.com/260327023454French%20test%20hero.png')
    72% center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: clamp(-640px, -36vw, -348px);
}

.logo-nav {
  display: none !important;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 3.9rem);
  margin-bottom: 24px;
  line-height: 1.08;
  max-width: 520px;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 32px;
  opacity: 0.9;
  font-weight: 300;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}

.hero-subtext {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtext p {
  margin-bottom: 16px;
  font-size: 16px;
  opacity: 1;
}

.hero-subtext ul {
  list-style-type: disc;
  color: rgba(255, 255, 255, 0.85);
}

.hero-subtext li {
  margin-bottom: 8px;
  font-size: 15px;
}

.trust-badges {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  opacity: 0.8;
  align-items: center;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 2. Why Learn Canadian French */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

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

.card-icon {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-icon:hover {
  transform: translateY(-5px);
}

.card-icon i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.card-icon h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card-icon p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-problem {
  background: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-problem:hover {
  transform: translateY(-5px);
}

.card-problem i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.card-problem h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.card-problem p {
  font-size: var(--fs-body);
  color: var(--text-gray);
  line-height: 1.6;
}

.card-img-small {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: auto;
}

/* 3. Problem Section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 1.125rem;
  color: var(--text-gray);
}

.problem-list i {
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* 4. Social Proof Strip */
.stats-strip {
  background-color: var(--bg-light);
  padding: 40px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

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

.stat-item h3 {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-gray);
}

/* 5. How It Works */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #E5E7EB;
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 30px;
  left: 50px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 180px;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.step-item:hover .step-circle {
  background: var(--primary-color);
  color: white;
}

.step-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 14px;
  color: var(--text-gray);
}

/* 6. Target User */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.target-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.target-item i {
  color: var(--primary-color);
  font-size: 24px;
  flex-shrink: 0;
}

.target-item span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-gray);
}

/* 7. Inspirational Journey */
.journey-section {
  background: url('https://filemanager-static01.italki.com/260327023626French%20tests%20Imagine%20What%20Happens%20After%20CLB%207%20%E8%83%8C%E6%99%AF%E5%9B%BE.png')
    center/cover no-repeat fixed;
  position: relative;
  color: white;
  padding: 180px 0;
  min-height: 700px;
  display: flex;
  align-items: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}

.journey-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  padding: 45px 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.journey-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.journey-icon {
  font-size: 72px;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 20px;
  display: inline-block;
}

.journey-card p {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
}

/* 8. Program Details */
.feature-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
}

/* 9. Teacher Section */
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.teacher-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding-bottom: 24px;
}

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

.teacher-info {
  padding: 20px;
}

.teacher-info p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  min-height: 80px;
}

/* 11. Pricing */
.pricing-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 60px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px solid var(--primary-color);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.price-tag {
  font-size: 64px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 20px 0;
}

.price-sub {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 30px;
}

/* 12. Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: #ffddd9;
  position: absolute;
  top: 20px;
  left: 20px;
}

.student-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.student-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* 14. Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.comparison-table th {
  background: #f9fafb;
  font-weight: 700;
  font-size: 18px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  padding-left: 40px;
  font-weight: 600;
}

.comparison-table .highlight-col {
  background: #fff5f4;
  color: var(--primary-color);
  font-weight: 700;
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}

.comparison-table tr:last-child .highlight-col {
  border-bottom: 2px solid var(--primary-color);
}

.comparison-table th.highlight-col {
  border-top: 2px solid var(--primary-color);
}

/* 15 & 16. Accordion/Expandable */
.accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.0625rem;
}

.accordion-content {
  padding: 0 24px 24px;
  color: var(--text-gray);
  display: none;
  line-height: 1.7;
}

.accordion-item.open .accordion-content {
  display: block;
}

.accordion-item.open .accordion-header {
  color: var(--primary-color);
}

/* 17. Support */
.support-img {
  width: 100%;
  border-radius: 16px;
}

/* Footer CTA */
.final-cta {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 24px;
}

.final-cta p {
  font-size: 1.25rem;
  margin-bottom: 50px;
  opacity: 0.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .timeline {
    flex-wrap: wrap;
  }

  .step-item {
    width: calc(50% - 12px);
  }

  .timeline::before {
    display: none;
  }

  .target-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-nav {
    top: 20px;
    left: 20px;
  }

  .logo-nav img {
    height: 32px;
  }

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

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: 60vh;
    height: 60vh;
  }

  .hero-content {
    padding: 20px;
  }

  .hero h1 {
    font-size: clamp(24px, 6vw, 42px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: clamp(14px, 3vw, 18px);
    margin-bottom: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 16px;
  }

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

  .card-icon {
    padding: 20px;
  }

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

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

  .card-img-small {
    height: 100px;
  }

  .problem-list li {
    font-size: 16px;
    gap: 12px;
  }

  .problem-list i {
    font-size: 20px;
  }

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

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

  .stat-item p {
    font-size: 12px;
  }

  .timeline {
    flex-direction: column;
    gap: 30px;
  }

  .step-item {
    width: 100%;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journey-card {
    padding: 30px;
  }

  .journey-icon {
    font-size: 52px;
  }

  .journey-card p {
    font-size: 16px;
  }

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

  .teacher-img {
    height: 200px;
  }

  .teacher-info {
    padding: 18px;
  }

  .teacher-info p {
    font-size: 14px;
    min-height: auto;
  }

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

  .testimonial-card {
    padding: 24px 16px;
  }

  .quote-icon {
    font-size: 32px;
  }

  .student-img {
    width: 50px;
    height: 50px;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
    font-size: 14px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 12px;
  }

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

  .section-header p {
    font-size: 16px;
  }

  .pricing-card {
    padding: 40px 24px;
  }

  .price-tag {
    font-size: 48px;
  }

  .price-sub {
    font-size: 18px;
  }

  .accordion-item {
    margin-bottom: 12px;
  }

  .accordion-header {
    padding: 18px 16px;
    font-size: 16px;
  }

  .accordion-content {
    padding: 0 16px 16px;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
  }

  .feature-list li {
    font-size: 16px;
    gap: 12px;
    margin-bottom: 16px;
  }

  .feature-list i {
    font-size: 20px;
  }

  .target-item {
    padding: 16px;
    gap: 12px;
  }

  .target-item i {
    font-size: 20px;
    min-width: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    min-height: 50vh;
    height: 50vh;
  }

  .hero-content {
    padding: 12px;
  }

  .hero h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    margin-top: 24px;
  }

  .trust-badges span {
    gap: 6px;
  }

  .logo-nav {
    top: 12px;
    left: 12px;
  }

  .logo-nav img {
    height: 28px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
    max-width: none;
  }

  .grid-5 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-icon {
    padding: 16px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .card-icon h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .card-icon p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .card-img-small {
    height: 80px;
  }

  .two-col {
    gap: 24px;
  }

  .problem-img {
    border-radius: 12px;
  }

  .problem-list li {
    font-size: 14px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .problem-list i {
    font-size: 18px;
    margin-top: 0;
  }

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

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

  .stat-item p {
    font-size: 11px;
  }

  .stats-strip {
    padding: 30px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .step-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-item p {
    font-size: 12px;
  }

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

  .journey-card {
    padding: 24px;
  }

  .journey-icon {
    font-size: 48px;
    margin-bottom: 12px;
  }

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

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

  .teacher-card {
    padding-bottom: 16px;
  }

  .teacher-img {
    height: 180px;
  }

  .teacher-info {
    padding: 12px;
  }

  .teacher-info p {
    font-size: 14px;
    min-height: auto;
  }

  .testimonial-card {
    padding: 16px 12px;
  }

  .quote-icon {
    font-size: 28px;
    top: 12px;
    left: 12px;
  }

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

  .accordion-header {
    padding: 18px 14px;
  }

  .student-img {
    width: 45px;
    height: 45px;
  }

  .student-profile {
    gap: 12px;
  }

  .comparison-table {
    font-size: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 6px;
    font-size: 12px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    padding-left: 8px;
    font-size: 12px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 14px;
  }

  .pricing-card {
    padding: 30px 16px;
    margin: 0 auto;
    max-width: 100%;
  }

  .pricing-badge {
    padding: 6px 16px;
    font-size: 12px;
    top: -12px;
  }

  .price-tag {
    font-size: 40px;
    margin: 16px 0;
  }

  .price-sub {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .accordion-item {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .accordion-header {
    padding: 14px;
    font-size: 14px;
  }

  .accordion-content {
    padding: 0 14px 14px;
    font-size: 13px;
  }

  .target-item {
    padding: 12px;
    border-radius: 8px;
  }

  .target-item i {
    font-size: 18px;
    min-width: 18px;
  }

  .target-item span {
    font-size: 14px;
  }

  .feature-list li {
    font-size: 14px;
    gap: 10px;
    margin-bottom: 12px;
  }

  .feature-list i {
    font-size: 18px;
    min-width: 18px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .final-cta p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .support-img {
    border-radius: 12px;
  }
}

