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

body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b6cb0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #2b6cb0;
}

.btn-nav {
  background: #2b6cb0;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
}

.btn-nav:hover {
  background: #2c5282;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  margin-top: 60px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn-primary {
  display: inline-block;
  background: #f6ad55;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(246, 173, 85, 0.4);
}

.btn-primary:hover {
  background: #ed8936;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 173, 85, 0.5);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #2d3748;
}

.program {
  padding: 6rem 0;
  background: #f7fafc;
}

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

.program-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

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

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.program-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2b6cb0;
}

.program-card p {
  color: #718096;
  line-height: 1.7;
}

.benefits {
  padding: 6rem 0;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefits-list {
  list-style: none;
  margin: 2rem 0;
}

.benefits-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list strong {
  color: #2b6cb0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial {
  background: #edf2f7;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  border-right: 4px solid #2b6cb0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: #4a5568;
}

.testimonial-author {
  font-weight: 600;
  color: #2b6cb0;
}

.pricing {
  padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.pricing .section-title {
  color: white;
}

.pricing-card {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  color: #2d3748;
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6ad55;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-weight: 700;
}

.pricing-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2b6cb0;
}

.pricing-original {
  text-align: center;
  text-decoration: line-through;
  color: #a0aec0;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: #2b6cb0;
  margin-bottom: 0.5rem;
}

.pricing-period {
  text-align: center;
  color: #718096;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  padding: 0.8rem 0;
  padding-right: 2rem;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #48bb78;
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-cta {
  text-align: center;
  margin: 2rem 0;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

.pricing-note {
  margin-top: 1rem;
  color: #e53e3e;
  font-weight: 600;
}

.pricing-guarantee {
  background: #edf2f7;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
}

.pricing-guarantee strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #2b6cb0;
}

.pricing-guarantee p {
  color: #718096;
  font-size: 0.9rem;
}

.cta {
  padding: 6rem 0;
  background: #f7fafc;
}

.cta-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #2d3748;
}

.cta-subtitle {
  text-align: center;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.cta-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #2b6cb0;
}

textarea.form-input {
  resize: vertical;
  margin-bottom: 1rem;
}

.cta-form button {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
}

.form-privacy {
  text-align: center;
  color: #a0aec0;
  font-size: 0.9rem;
}

.footer {
  background: #2d3748;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #f6ad55;
}

.footer-col p {
  color: #cbd5e0;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding-top: 1rem;
  text-align: center;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .benefits-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}