 /* Hero Section Styles */
 .hero-section {
  height: 60vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-top: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgb(0 0 0 / 60%) 0%, rgb(0 0 0 / 20%) 30%, rgb(0 0 0 / 18%) 60%, rgb(0 0 0 / 5%) 85%, #00000000 100%);
  z-index: 2;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    height: 60vh;
  }
}

@media (max-width: 992px) {
  .hero-section {
    height: 55vh;
  }

  .hero-section::after {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-section::after {
    height: 120px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 45vh;
  }

  .hero-section::after {
    height: 100px;
  }
}

/* Breadcrumb Styles */
.hero-breadcrumb {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 15;
  padding: 40px 0;
}

.breadcrumb-content {
  position: relative;
  z-index: 10;
}

.breadcrumb-text {
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb-link:hover {
  color: white;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.page-title {
  color: white;
  font-size: 3.7rem;
  font-weight: 900;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  line-height: 1.1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .page-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .page-title {
    font-size: 2.7rem;
  }

  .hero-breadcrumb {
    padding: 30px 0;
    bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .breadcrumb-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
  }

  .hero-breadcrumb {
    bottom: 0;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
  }

  .breadcrumb-text {
    font-size: 0.9rem;
    letter-spacing: 0.3px;
  }

  .hero-breadcrumb {
    padding: 15px 0;
  }
}

