/* ...existing code... */

.heading-content {
  position: relative;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding-top: 70px;
}

.heading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.heading-main-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  height: calc(30vh - 70px);
  padding: 2rem 0;
  align-items: center;
  justify-content: center;
}

.heading-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
}

.heading-subtitle {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .heading-content.heading-brands,
  .heading-content.heading-contacts {
    height: 25vh;
  }
  .heading-content.heading-brands .heading-main-content,
  .heading-content.heading-contacts .heading-main-content {
    height: calc(25vh - 70px);
  }
}

/* ...existing code heading... */
