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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2937;
  background: #ffffff;
}

.theme-7 {
  --theme-color: #06b6d4;
  --theme-dark: #0891b2;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-surface: #f0fdfa;
}

.max-width-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 30px;
}

.top-navigation {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--theme-color);
}

.menu-items {
  display: flex;
  gap: 36px;
}

.menu-items a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.menu-items a:hover {
  color: var(--theme-color);
}

.main-header {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-surface), white);
}

.header-content-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.primary-heading {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.15;
}

.primary-subheading {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.main-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--theme-color);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s;
}

.main-cta:hover {
  background: var(--theme-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

.programs-section {
  padding: 90px 0;
  background: white;
}

.secondary-heading {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}

.program-item {
  padding: 36px 28px;
  background: var(--bg-surface);
  border-radius: 14px;
  border: 2px solid #ccfbf1;
  transition: all 0.3s;
}

.program-item:hover {
  border-color: var(--theme-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.icon-circle {
  width: 52px;
  height: 52px;
  background: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.program-header h3 {
  font-size: 20px;
  color: var(--text-primary);
}

.program-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefits-section {
  padding: 90px 0;
  background: var(--bg-surface);
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.left-column h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.description-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.benefit-box {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-number {
  width: 44px;
  height: 44px;
  background: var(--theme-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.benefit-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.benefit-info p {
  color: var(--text-secondary);
  font-size: 15px;
}

.final-cta {
  padding: 90px 0;
  background: white;
}

.cta-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(135deg, var(--theme-color), var(--theme-dark));
  border-radius: 18px;
  color: white;
}

.cta-card h2 {
  font-size: 34px;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-card p {
  font-size: 18px;
  opacity: 0.95;
}

.bottom-footer {
  background: var(--text-primary);
  color: white;
  padding: 30px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .primary-heading {
    font-size: 36px;
  }

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

  .menu-items {
    gap: 16px;
    font-size: 14px;
  }
}
