body {
  margin: 0;
  font-family: sans-serif;
  background: #f4f4f4;
  direction: rtl;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #d62828;
  color: white;
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a, nav ul li button {
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

#hero {
  background: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
}

section {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea, form button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: #d62828;
  color: white;
  border: none;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}

.social-icon {
  width: 24px;
  vertical-align: middle;
  margin-right: 0.5rem;
}
