.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-spacing {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--secondary);
}

.text-center {
  text-align: center;
}

.section-subtitle {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-header {
  background-color: var(--secondary);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header .section-title {
  margin-bottom: 0;
  font-size: 42px;
}