.image-section {
  min-height: 400px;
  background: url("../../assets/img//photo-1580929753603-10519c6e480a.jpg") center / cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

.image-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  transition: height 0.3s ease;
}

/* Mobilne – overlay */

@media (max-width: 768px) {
  .image-section::after {
    height: 200px;
  }
}

.about-us-header {
  top: -80px;
  position: relative;
  border-radius: 8px;
  background-color: #fff;
}

.about-us-list a {
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--szron-dark-gray);
  text-decoration: none;
  font-size: 14px;
}

.about-us-list a:hover {
  color: var(--szron-dark-blue);
}

.about-us-list a:hover span {
  text-decoration: none !important;
}

.about-us-list span {
  width: 20px;
  color: #c9c9c9;
  border-left: 1px solid #ccc;
  margin-left: 5px;
  text-decoration: none !important;
  display: inline-block;
}

.szron-bg-dark-blue {
  background-color: var(--szron-dark-blue);
}

