body {
  font-family: 'Tahoma', sans-serif;
  margin: 0;
  background: #f9fbfd;
  color: #1b2d51;
}

header {
  background: #1b2d51;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
}

.logo-container {
  margin-left: 30px;
  margin-right: auto;
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 60px 20px 20px;
  background-image: url('imag/background.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero button {
  background-color: #1b2d51;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

.services, .contact {
  padding: 40px 20px;
  text-align: center;
}

.services h2, .contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
}

.card img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.contact-form, .contact-info {
  width: 300px;
  text-align: center;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact-form button {
  background-color: #ffffff !important;
  color: #1b2d51 !important;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;  /* لزيادة وضوح النص */
}

footer {
  background-color: #1b2d51;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}
