/* General Styles */
body {
  font-family: 'Cairo', Arial, sans-serif; /* Arabic-friendly font */
  margin: 0;
  padding: 0;
  background-color: #f4f7f9;
  color: #333;
  direction: rtl; /* Right-to-left layout */
}

a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

/* Header Styles */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.top-image {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.top-image span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d1e7ff;
}

/* Services Section */
.services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 40px auto;
}

.services-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.services-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.download-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #007bff;
  color: #fff;
  font-size: 14px;
  margin-top: 40px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: #d1e7ff;
  text-decoration: underline;
}

.footer a:hover {
  color: #fff;
}