.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 72px;
  gap: 24px;
  isolation: isolate;
  width: 100%;
  height: 240px;
  background: #ad2324;
  position: relative;
}

.page-header__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 24px;
  width: 100%;
  max-width: 1368px;
  margin: 0 auto;
}

.page-header__label {
  display: none;
  width: 100%;
  max-width: 1200px;
  height: 22px;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #222222;
}

.page-header__title {
  text-transform: uppercase;
  width: 100%;
  height: 80px;
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 64px;
  line-height: 125%;
  text-align: center;
  color: #ffffff;
  margin: 0 auto;
}

.page-header__button {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 12px;
  width: 129px;
  height: 80px;
  background: #ff8c00;
  border-radius: 8px;
}

.page-header__container {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  gap: 20px;
  position: absolute;
  width: 236px;
  height: 197px;
  right: 72px;
  top: 80px;
  background: #eaf6ed;
  border-radius: 12px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .page-header {
    padding: 60px 40px;
    height: 200px;
  }

  .page-header__title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 40px 20px;
    height: 160px;
  }

  .page-header__title {
    font-size: 36px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 30px 16px;
    height: 140px;
  }

  .page-header__title {
    font-size: 28px;
    height: 50px;
  }
}
