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

body {
  font-family: 'Noto Kufi Arabic', sans-serif;
  background: #fff;
  color: #2d2d2d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.05rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-icon {
  width: 60px;
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #16a34a;
}

main {
  flex: 1;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: #f0fdf4;
}

.hero-shape {
  width: 350px;
  height: 350px;
  background: linear-gradient(145deg, #bbf7d0, #86efac);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  filter: blur(60px);
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.divider {
  width: 60px;
  height: 3px;
  background: #16a34a;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.content {
  max-width: 700px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.content h2 {
  color: #15803d;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.content p {
  line-height: 2;
  margin-bottom: 1rem;
  color: #666;
  font-size: 1.05rem;
}

footer {
  background: #f0fdf4;
  border-top: 1px solid #eee;
  color: #999;
  text-align: center;
  padding: 1.25rem;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-shape {
    width: 200px;
    height: 200px;
  }
}
