/* כללי */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #bb88be8d;
  color: #333;
  line-height: 1.6;
  direction: rtl;
  width: 100vw;
  height: 100vh;
}

header {
  background-color: #37c33c72; /* צבע רקע ירוק */
  color: rgb(21, 20, 20);
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 2.5em;
}

header p {
  font-size: 1.2em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* עיצוב עבור החלק של השירותים */
section {
  padding: 40px 20px;
  text-align: center;
}

section h2 {
  font-size: 2em;
  color: #3413ae;
  margin-bottom: 30px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;

  margin-top: 30px;
}

.service {
  display: flex;
  flex-direction: column;

  justify-items: center;
  text-align: center;

  /* margin: 0 auto; */
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 320px;
  border: 2px solid #ddd; /* גבול רך */
}

.service:hover {
  transform: translateY(-10px); /* הזזה קלות למעלה בעת ריחוף */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* אפקט צל חזק יותר */
}

.service h3 {
  font-size: 1.6em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.service p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 20px;
}

.service .icon {
  font-size: 3em;
  color: #4caf50;
  margin-bottom: 15px;
}

/* עיצוב הכפתור של צור קשר */
.contact-button {
  display: inline-block;
  background-color: #25d366; /* צבע וואטסאפ */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  margin-top: 20px;
}

.contact-button:hover {
  background-color: #128c7e; /* צבע כהה יותר בעת ריחוף */
}

/* עיצוב הכותרת בתחתית */
footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

footer h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

footer p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

/* עיצוב קישור הטלפון */
footer a {
  font-size: 1.5em;
  color: #4caf50;
  text-decoration: none;
}

footer a:hover {
  color: #2c6e2f; /* צבע כהה יותר בעת ריחוף */
}

/* רספונסיביות */
@media screen and (max-width: 768px) {
  header h1 {
    font-size: 2em;
  }

  section h2 {
    font-size: 1.8em;
  }

  .services {
    grid-template-columns: 1fr;
  }
}
