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

body {
  font-family: 'Heebo', 'Alef', 'Arial', sans-serif;
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  min-height: 100vh;
  padding: 20px;
  direction: rtl;
}

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

.header {
  text-align: center;
  color: white;
  margin-bottom: 10px;
  padding: 10px 10px;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin: 0 auto 30px;
  display: block;
  object-fit: cover;
}

.header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.3rem;
  opacity: 0.95;
  font-weight: 300;
  margin-bottom: 20px;
}

.header .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 10px;
}

.lessons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.lesson-card {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lesson-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #30cfd0, #330867);
}

.lesson-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lesson-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(48, 207, 208, 0.4);
}

.lesson-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.lesson-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
}

.lesson-details {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.lesson-details li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.95rem;
}

.lesson-details li:last-child {
  border-bottom: none;
}

.lesson-details li i {
  color: #30cfd0;
  margin-left: 10px;
  width: 20px;
}

.about-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 50px;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-section a {
  color: #30cfd0;
  text-decoration: none;
  font-weight: 500;
}

.about-section a:hover {
  text-decoration: underline;
}

.contact-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
}

.contact-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #f8f9fa;
  border-radius: 10px;
  color: #333;
}

.contact-item i {
  color: #30cfd0;
  font-size: 1.5rem;
}

.contact-item a {
  color: #30cfd0;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(48, 207, 208, 0.4);
  margin: 10px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(48, 207, 208, 0.6);
  color: white;
  text-decoration: none;
}

.recommendations-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(48, 207, 208, 0.4);
}

.recommendations-link:hover {
  background: linear-gradient(135deg, #330867 0%, #30cfd0 100%);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(48, 207, 208, 0.6);
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  background: #30cfd0;
  color: white;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 5px;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.online-lesson-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.faq-section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 50px 0;
}

.faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #30cfd0;
  margin-bottom: 10px;
}

.faq-item p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.page-summary {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
  color: white;
  text-align: center;
}

.page-summary p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 2.5rem;
  }

  .header p {
    font-size: 1.1rem;
  }

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

  .lesson-card {
    padding: 25px;
  }

  .contact-info {
    flex-direction: column;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .faq-section {
    padding: 25px;
  }

  .page-summary {
    padding: 15px;
  }

  .page-summary p {
    font-size: 1rem;
  }
}

