.about-us-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  color: #111;
}

.about-us-section h3 {
  font-weight: 600;
  margin-bottom: 5px;
}

.about-us-section h5 {
  font-weight: 400;
  letter-spacing: 0.5px;
}

.about-us-section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.about-us-section img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-us-section img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.about-us-section .profile-img {
  width: 100%;
  max-width: 450px;      /* közös szélesség */
  height: 450px;          /* közös magasság */
  object-fit: cover;      /* kitölti a keretet, nem torzít */
  border-radius: 20px;    /* lekerekített sarkok */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-us-section .profile-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .about-us-section .profile-img {
    max-width: 100%;
    height: 320px;
  }
}
.about-us-section h3 {
  font-size: 2rem;              /* nagyobb névméret */
  color: rgb(196, 240, 0);      /* lime-zöld szín */
  font-weight: 700;             /* vastagabb kiemelés */
  margin-bottom: 0.5rem;
}

.about-us-section h5 {
  font-size: 1.1rem;
  color: #777;                  /* maradjon visszafogottabb */
  margin-bottom: 1rem;
}
