/* إعداد الخطوط والألوان */
body {
  font-family: 'Tajawal', sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
  line-height: 1.8;
}

/* تنسيق الرأس */
.header {
  background-color: #ffffff;
  border-bottom: 2px solid #1BA57B;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  color: #1BA57B;
  font-size: 1.6rem;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #1BA57B;
}

/* قسم البطل */
.hero {
  background: linear-gradient(135deg, #1BA57B, #2bd1a1);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #ffffff;
  color: #1BA57B;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #1BA57B;
  color: white;
}

/* الأقسام */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.light {
  background-color: #f8f9f9;
}

.section h3 {
  color: #1BA57B;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* القوائم */
.services-list, .goals-list {
  max-width: 700px;
  margin: 1.5rem auto;
  text-align: right;
  list-style: none;
  padding: 0;
}

.services-list li, .goals-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

/* تواصل معنا */
.contact a {
  color: #1BA57B;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* التذييل */
.footer {
  background-color: #1BA57B;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* تجاوب */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .section {
    padding: 3rem 1rem;
  }
}
