.about-section {
  padding: 60px 24px;
  background-color: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image img {
  max-width: 220px;
  width: auto; 
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  background: transparent;
}

.about-icons {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f2f2f2;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.phone-icon {
  font-size: 20px;
  line-height: 1;
  color: #000;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

.icon-btn:hover {
  background-color: #0077ff;
  transform: scale(1.05);
}

.icon-btn:hover .phone-icon,
.icon-btn:hover img {
  filter: brightness(0) invert(1);
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.values-section {
  background-color: #f2f2f2;
  padding: 60px 24px;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.value-card {
  width: 260px;
  text-align: center;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.value-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.reviews-section {
  background-color: #fff;
  padding: 60px 24px;
  text-align: center;
}

.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reviews-inner h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #000;
}

.review-card {
  background-color: #f2f2f2;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.review-author {
  display: block;
  font-weight: 600;
  color: #000;
  font-size: 0.95rem;
}
