body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #f0f5f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  direction: rtl;
  padding: 20px;
}

.container {
  text-align: center;
  background: #f0f5f9;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  width: 100%;
}

.logo {
  width: 200px;
  margin-bottom: 20px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  background-color: teal;
  border-radius: 8px;
}

h1 {
  margin-bottom: 10px;
  color: #4a148c;
  font-size: 24px;
}

p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #666;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* أزرار */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
  font-weight: 600;
}

.button i {
  margin-left: 8px;
  font-size: 18px;
}

/* ألوان */
.button.email {
  background-color: #6a1b9a;
}
.button.email:hover {
  background-color: #4a148c;
}

.button.whatsapp {
  background-color: #25d366;
}
.button.whatsapp:hover {
  background-color: #1ebe5b;
}

.button.call {
  background-color: #007bff;
}
.button.call:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (min-width: 600px) {
  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .button {
    flex: 1 1 30%;
    margin: 5px;
  }
}
