
.hero-about {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;

}

.hero-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-about .hero-content {
  position: relative;
  z-index: 2;
}
.hero-about h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.hero-about p {
  font-size: 16px;
  max-width: 600px;
  margin: auto;
}
.about-mas-b .container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  width: 100%;
}

.why-choose-us {
  background: #fff;
  padding: 80px 20px;
}

.why-container {
  max-width: 1366px;
  margin: 0 auto;
}

.why-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-box {
  width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.why-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.why-box img {
  height: 64px;
  margin-bottom: 20px;
}

.why-box span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #DCB771;
}


.social-follow {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
  padding-bottom: 20px; /* ×¨×•×•×— ×ž×ª×—×ª ×œ××™×™×§×•× ×™× */
  margin-bottom: 40px;
}

.social-icons::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%; /* ×§×•×‘×¢ ××ª ×¨×•×—×‘ ×”×§×• */
  height: 2px;
  background-color: #e0e0e0;
}

.social-icons a svg {
  width: 40px;
  height: 40px;
  fill: #000 !important;
  transition: transform 0.3s ease, fill 0.3s ease;
  display: block;
}

.social-icons a:hover svg {
  transform: translateY(-6px);
  fill: #DCB771 !important;
}

.social-icons a svg {
  color: #000; /* ×¦×‘×¢ ×‘×¨×™×¨×ª ×ž×—×“×œ â€“ ×©×—×•×¨ */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover svg {
  transform: translateY(-5px);
  color: #DCB771; /* ×¦×‘×¢ ×–×”×‘ */
}


.trust-us {
  background-color: #f9f9f9;
  padding: 40px 30px;
  border-radius: 12px;
  margin: 80px 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.trust-us h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

.trust-us p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-points li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #111;
  position: relative;
  padding-left: 25px;
}

.trust-points li::before {
  content: '✔'; /* ← תו תקני */
  color: #DCB771;
  position: absolute;
  left: 0;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .hero-about {
    height: 300px;
  }
  .hero-about h1 {
    font-size: 28px;
  }
  .hero-about p {
    font-size: 16px;
    padding: 0 10px;
  }
}