.page-title {
  color: var(--heading-color);
  background-color: var(--background-color);
  position: relative;
  padding-top: 90px;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color:
    color-mix(in srgb, var(--heading-color), transparent 70%);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.section-badge i {
  font-size: 1rem;
}

.intro-content h2 {
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .intro-content h2 {
    font-size: 1.8rem;
  }
}

.lead-text {
  font-size: 1rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.intro-content p {
  margin-bottom: 2rem;
}


.visual-section {
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.main-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .main-image img {
    height: 350px;
  }
}

.experience-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--background-color);
  padding: .7rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.badge-text {
  font-size: 0.8rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.overlay-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--background-color);
}

@media (max-width: 992px) {
  .overlay-image {
    display: none;
  }
}

.overlay-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}