.main-wrapper {
  max-width: 75vw;
  margin: 0 auto;
  padding: 60px 20px;
}

:where(main) p {
  color: #000000;
  font-size: 16px;
  margin-bottom: 25px;
}

.section-title {
  color: #000000;
  font-size: 32px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  -webkit-text-stroke: 2px black;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 60px;
  height: 4px;
  background-color: #000000;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #000000;
  transition: all 0.35s ease;
  flex-shrink: 0;
}
.btn .arrow svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  transition: stroke 0.35s ease;
}
.btn:hover {
  background: #000000;
  color: #ffffff !important;
  border-color: #000000;
}
.btn:hover .arrow {
  background: #ffffff;
}
.btn:hover .arrow svg {
  stroke: #000000;
}
.btn-dark {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn-dark .arrow {
  background: #ffffff;
}
.btn-dark .arrow svg {
  stroke: #000000;
}
.btn-dark:hover {
  background: #ffffff;
  color: #000000 !important;
  border-color: #000000;
}
.btn-dark:hover .arrow {
  background: #000000;
}
.btn-dark:hover .arrow svg {
  stroke: #ffffff;
}

.intro-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  margin: 1% 0 !important;
}

.intro-image {
  width: 90%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border: 1px solid #000000;
  aspect-ratio: 16/9;
}

#intro-image-one {
  margin-right: 30% !important;
}

#intro-image-two {
  margin-right: 0;
}

.values-section {
  margin: 5% 0 10% 0 !important;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: stretch;
  gap: 30px;
  margin: 40px 0 0 0 !important;
}

.value-card {
  border: 1px solid #000000;
  background-color: #ffffff;
  padding: 40px 30px;
  margin: auto 0 !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  height: 100%;
}
.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  width: 100%;
  height: 4px;
  background-color: #000000;
  transition: left 0.5s ease;
  z-index: 10;
}
.value-card:hover {
  transform: translateY(-5px);
}
.value-card:hover::after {
  left: 0;
}
.value-card h3 {
  color: #000000;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  -webkit-text-stroke: 1px black;
  letter-spacing: 2px;
}
.value-card p {
  color: #000000;
  margin-bottom: 0;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #000000 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5% !important;
}
.icon-circle svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-section {
  position: relative;
  overflow: hidden;
  margin: 5% 0 !important;
  padding: 90px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(230, 57, 70, 0.22), transparent 70%), linear-gradient(180deg, rgba(10, 10, 10, 0.86) 0%, rgba(0, 0, 0, 0.94) 100%), url("../images/D11.webp") center/cover no-repeat, #000000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e63946, transparent);
}
.cta-section h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 22px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.3;
}
.cta-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: #e63946;
  transform: translateX(-50%);
}
.cta-section .cta-content p {
  max-width: 620px;
  margin: 0 auto 38px;
  color: #d4d4da;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.cta-content {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  margin: auto !important;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  background-color: transparent !important;
  margin: auto !important;
}
.cta-buttons .btn {
  padding: 14px 34px;
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}
.cta-buttons .btn .arrow {
  background: #ffffff;
}
.cta-buttons .btn .arrow svg {
  stroke: #000000;
}
.cta-buttons .btn:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000 !important;
}
.cta-buttons .btn:hover .arrow {
  background: #000000;
}
.cta-buttons .btn:hover .arrow svg {
  stroke: #ffffff;
}
.cta-buttons .btn-dark {
  border-color: rgba(255, 255, 255, 0.6);
  background: #000000;
  color: #ffffff;
}
.cta-buttons .btn-dark .arrow {
  background: #ffffff;
}
.cta-buttons .btn-dark .arrow svg {
  stroke: #000000;
}
.cta-buttons .btn-dark:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000 !important;
}
.cta-buttons .btn-dark:hover .arrow {
  background: #000000;
}
.cta-buttons .btn-dark:hover .arrow svg {
  stroke: #ffffff;
}

@media (max-width: 1100px) {
  .intro-block {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  #intro-image-one {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 900px) {
  .main-wrapper {
    max-width: 100%;
    padding: 40px 20px;
  }
  #intro-image-one {
    margin-right: 0 !important;
  }
  .intro-image {
    width: 100%;
    aspect-ratio: auto;
    margin: 0 !important;
  }
  .cta-section {
    padding: 56px 20px;
  }
  .intro-block {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 60px;
  }
  .intro-block.reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .intro-image {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .section-title,
  .cta-section h2 {
    font-size: 26px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
}

/* the call-to-action block lifts a little on hover, and the red bar under its title grows */
.cta-section {
  transition: box-shadow 0.45s ease;
}
.cta-section h2::after {
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-section:hover h2::after {
  width: 120px;
}
@media (prefers-reduced-motion: no-preference) {
  .cta-section {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  }
  .cta-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  }
}
/* both buttons of the call-to-action block do the same on hover: white with dark text and a dark arrow
   (the shared button rules in style.css would otherwise turn the outline one black, with dark text on it) */
.cta-buttons .btn:hover,
.cta-buttons .btn:focus-visible,
.cta-buttons .btn-dark:hover,
.cta-buttons .btn-dark:focus-visible {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #000000 !important;
}
.cta-buttons .btn:hover .arrow,
.cta-buttons .btn:focus-visible .arrow,
.cta-buttons .btn-dark:hover .arrow,
.cta-buttons .btn-dark:focus-visible .arrow {
  background: #000000;
}
.cta-buttons .btn:hover .arrow svg,
.cta-buttons .btn:focus-visible .arrow svg,
.cta-buttons .btn-dark:hover .arrow svg,
.cta-buttons .btn-dark:focus-visible .arrow svg {
  stroke: #ffffff;
}