body {
  margin: 0;
  padding: 0;
  font-family: 'Assistant', 'Roboto', sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #e6ecf3);
  color: #1d5377;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  flex-direction: column;
}

.container {
  text-align: center;
  padding: 20px;
}

.content {
  background: #ffffffcc;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 480px;
  margin: auto;
  animation: fadeIn 1.2s ease-in-out;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.hebrew {
  direction: rtl;
  font-weight: 700;
  margin: 10px 0;
  font-size: 1.3em;
}

.english {
  direction: ltr;
  margin: 10px 0 30px 0;
  font-size: 1.1em;
  color: #333;
}

.links a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #00acc1;
  font-weight: bold;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #007c91;
}

.footer {
  margin-top: 20px;
  font-size: 0.9em;
  color: #777;
}

.footer a {
  color: #1d5377;
  text-decoration: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* רספונסיביות */
@media (max-width: 600px) {
  .content {
    padding: 30px 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  .hebrew, .english {
    font-size: 1em;
  }
}
