/* ===============================
   ABOUT PAGE – תואם לפרויקט
=================================*/
.about-wrapper {
  min-height: calc(100vh - 120px);
  padding: 2rem 1.5rem 2rem;
}

.about-page {
  max-width: 900px;
  margin: 0 auto;
}

.about-title {
  text-align: center;
  color: var(--primary-color, #4a90e2);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1.75rem;
}

.about-card {
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid #e7e7e7;
}

.about-card p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #374151;
  font-size: 1rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-card strong {
  color: var(--primary-color, #4a90e2);
}

.about-card .about-list {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
  list-style: none;
}

.about-card .about-list li {
  position: relative;
  padding-right: 1rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #374151;
}

.about-card .about-list li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary-color, #4a90e2);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-box {
  background: #fff;
  padding: 1.25rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid #e7e7e7;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-box:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.about-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-color, #4a90e2);
  margin: 0 0 0.5rem;
}

.about-box p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
}

.about-company {
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #e7e7e7;
}

.about-company h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}

.about-company p {
  margin: 0 0 0.75rem;
  line-height: 1.65;
  color: #374151;
  font-size: 1rem;
}

.about-company p:last-child {
  margin-bottom: 0;
}

.about-company strong {
  color: var(--primary-color, #4a90e2);
}

@media (max-width: 576px) {
  .about-wrapper {
    padding: 1.25rem 1rem;
  }
  .about-card,
  .about-company {
    padding: 1.25rem 1rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}
