body {
  margin: 0;
  font-family: 'Tahoma', sans-serif;
  background: #f9f9f9;
  text-align: center;
  direction: rtl;
}

.container {
  padding: 30px 15px;
  max-width: 600px;
  margin: auto;
}

.logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #5b8c5a;
}

h1, h2 {
  margin: 5px;
  color: #444;
}

.button-group {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn {
  background: #5b8c5a;
  color: white;
  padding: 15px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s;
}

.btn:hover {
  background: #4a7449;
}
