/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; background: #fff; }
a { color: #0073e6; text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 95%); margin: auto; }

/* Hero Section (Banner) */
.hero {
  position: relative;
  max-width: 1300px;
  margin: 60px auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  text-align: center;
}

.hero-inner h1 {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.breadcrumbs {
  font-size: 1rem;
  color: #fff;
}

.breadcrumbs a {
  color: #f0f0f0;
  text-decoration: none;
}

/* Content Section */
.content {
  margin-bottom: 60px;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.content h3 {
  font-size: 20px;
  margin: 20px 0 10px;
}

.content p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1290px) {
  .hero { margin: 40px 60px 0px 60px; }
  .hero-img { height: 280px; }
  .hero-inner {
    left: 50%;
    transform: translateX(-50%);
    bottom: 75px;
    text-align: center;
  }
  .hero-inner h1 { font-size: 1.6rem; }
  .breadcrumbs { font-size: 0.9rem; }
}

@media (max-width: 991px) {
  .hero { margin: 30px 60px 20px 60px; }
  .hero-img { height: 280px; }
  .hero-inner {
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    text-align: center;
  }
  .hero-inner h1 { font-size: 1.6rem; }
  .breadcrumbs { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .content h2 { font-size: 22px; }
  .content h3 { font-size: 18px; }
}

@media (max-width: 600px) {
  .hero { margin: 43px 20px 11px 20px; border-radius: 10px; }
  .hero-img { height: 210px; }
  .hero-inner {
    left: 50%;
    transform: translateX(-50%);
    bottom: 75px;
    text-align: center;
    padding: 0 10px;
  }
  .hero-inner h1 { font-size: 1.3rem; font-weight: 600; }
  .breadcrumbs { font-size: 0.7rem; }
  .content { padding: 0 10px; }
}
