/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== SECTION LAYOUT ===== */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-box {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  width: 100%;
  padding: 1.5rem 0 1rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #fff;
}

/* ===== HERO SECTION ===== */
.section-hero {
  justify-content: center;
  padding: 0 3rem;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin-top: 6rem;
  padding-top: 2rem;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 30%),
              linear-gradient(to top, #0a0a0a 0%, transparent 15%);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold {
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  background: transparent;
}

.btn-gold:hover {
  background: rgba(201, 168, 76, 0.1);
}

/* ===== SECTION FOOTER ===== */
.section-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.section-footer a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.section-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.section-footer .sep {
  margin: 0 0.6rem;
}

.section-footer .dot {
  margin: 0 0.4rem;
}

/* ===== SYSTEM SECTION ===== */
.section-system {
  justify-content: center;
  align-items: center;
  padding: 6rem 3rem 4rem;
  background: #0a0a0a;
}

.section-system::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/gym-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.system-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.system-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.system-subtext {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 3rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem 1.25rem;
  text-align: left;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  position: relative;
}

.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #c9a84c;
  border-radius: 50%;
}

/* ===== PRICING BOX ===== */
.pricing-box {
  border: 1px solid #c9a84c;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  max-width: 420px;
  width: 100%;
}

.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 2px;
}

.pricing-sub {
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image {
    width: 50%;
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  html {
    scroll-snap-type: none;
  }

  .header {
    padding: 1.25rem 1.5rem;
  }

  .nav-list {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-hero {
    padding: 0 1.5rem;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 5rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-image {
    width: 100%;
    opacity: 0.2;
  }

  .section-system {
    padding: 6rem 1.5rem 4rem;
  }

  .system-headline {
    font-size: 2rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .pricing-box {
    padding: 2rem 1.5rem;
  }

  .section-footer {
    position: relative;
    padding: 1.5rem 1.5rem;
    font-size: 0.6rem;
    flex-direction: column;
    gap: 0.3rem;
  }

  .section-footer .sep {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 0.65rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

/* ===========================
   INNER PAGES — SHARED
   =========================== */

.page-wrapper {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* card paragraph variant (coaching cards) */
.card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ===== MAIN FOOTER (inner pages) ===== */
.main-footer {
  margin-top: auto;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.main-footer p,
.main-footer span,
.main-footer a {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.5px;
}

.main-footer a {
  transition: color 0.3s;
}

.main-footer a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-self: flex-end;
}

/* ===== COACHING PAGE ===== */
.coaching-hero {
  padding: 5rem 3rem 4rem;
  text-align: center;
  position: relative;
}

.coaching-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/gym-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

.coaching-hero > * {
  position: relative;
  z-index: 1;
}

.page-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.coaching-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 1.75rem;
}

.coaching-body {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.keyword-line {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* ===== WHAT YOU GET (coaching) ===== */
.section-block {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-block-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== 3 COLUMNS ===== */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 3rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.col-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
}

.col-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.col-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.col-block li {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  position: relative;
}

.col-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #c9a84c;
  border-radius: 50%;
}

.col-block p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

/* ===== APPLICATION FORM ===== */
.application-section {
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
}

.application-form-box {
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-align: center;
}

.form-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}

.form-success p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.contact-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('images/gym-bg.jpg') center/cover no-repeat;
  opacity: 0.06;
  z-index: -1;
}

.contact-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem;
}

.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  letter-spacing: 8px;
  line-height: 1;
}

.contact-email {
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: #fff;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.contact-email:hover {
  opacity: 0.6;
}

.contact-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ===== FOOTER BRAND (contact page) ===== */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.footer-brand .logo-box {
  width: 26px;
  height: 26px;
  font-size: 0.7rem;
}

.footer-brand .logo-text {
  font-size: 0.65rem;
}

/* ===== APPLICATION PAGE ===== */
.apply-page {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.apply-back {
  display: inline-block;
  padding: 1.5rem 3rem 0;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.apply-back:hover {
  color: rgba(255, 255, 255, 0.7);
}

.apply-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.5rem 5rem;
}

.apply-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 0.75rem;
}

.apply-subtext {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.apply-accent {
  width: 40px;
  height: 2px;
  background: #c9a84c;
  margin-bottom: 2.5rem;
}

/* Form card */
.apply-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
}

.apply-card .form-group {
  margin-bottom: 1.75rem;
}

.apply-card .form-group label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 0.6rem;
}

.apply-card input,
.apply-card select {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.apply-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}

.apply-card select option {
  background: #1a1a1a;
  color: #fff;
}

.apply-card input:focus,
.apply-card select:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.apply-card input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: #fff;
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: #e8e8e8;
}

.apply-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.apply-success p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 2;
}

.apply-note {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.8;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .apply-back {
    padding: 1.25rem 1.5rem 0;
  }

  .apply-card {
    padding: 1.75rem 1.25rem;
  }
}

/* ===== LEGAL PAGES ===== */
.legal-wrapper {
  flex: 1;
  padding: 4rem 3rem 5rem;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  margin-bottom: 3rem;
  display: block;
}

.legal-wrapper h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 2.5rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.legal-wrapper p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.legal-wrapper ul {
  list-style: none;
  margin: 0.5rem 0 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.legal-wrapper li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  padding-left: 1rem;
  position: relative;
}

.legal-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* ===== INNER PAGE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cols-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .coaching-hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .section-block {
    padding: 3rem 1.5rem;
  }

  .cols-3 {
    grid-template-columns: 1fr;
    padding: 0 1.5rem 3rem;
  }

  .application-section {
    padding: 3rem 1.5rem;
  }

  .application-form-box {
    padding: 2rem 1.5rem;
  }

  .main-footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-right {
    align-self: auto;
  }

  .legal-wrapper {
    padding: 3rem 1.5rem 4rem;
  }

  .contact-center {
    padding: 2rem 1.5rem;
  }
}

