/* ======================== SERVICES PAGE ======================== */

body {
  background-color: #162333;
}

/* ======================== NAV BAR ======================== */
.cs-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.cs-nav__logo {
  display: block;
  width: 58px;
  flex-shrink: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cs-nav__logo:hover {
  opacity: 0.7;
}

.cs-nav__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================== PAGE LAYOUT ======================== */
.services-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #162333;
}

.services-page__content {
  display: flex;
  flex-direction: column;
  padding: 125px 20px 20px;
}

.services-page__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 40px;
}

.services-page__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-self: flex-start;
}

.services-page__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
}

.services-page__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.services-page__action {
  width: 100%;
}

/* Override accordion styles for standalone page — no animation, visible by default */
.services-page .services__accordion {
  opacity: 1;
  transform: none;
}

.services-page .services__accordion-rule--bottom {
  opacity: 1;
  transform: none;
}

/* Override accordion colors for this page */
.services-page .services__accordion-rule {
  background-color: #334357;
}

.services-page .services__btn {
  background-color: #ffffff;
}

/* ======================== RESPONSIVE — TABLET 768px+ ======================== */
@media (min-width: 768px) {
  .cs-nav {
    padding: 40px;
  }

  .cs-nav__logo {
    width: 74px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 36px;
    height: 36px;
  }

  .services-page__content {
    padding: 175px 40px 40px;
  }

  .services-page__body {
    gap: 60px;
  }

  .services-page__text {
    gap: 60px;
  }

  .services-page__items {
    gap: 9px;
  }

  .services-page__label {
    font-size: 16px;
  }

  .services-page__action {
    width: auto;
  }
}

/* ======================== RESPONSIVE — SMALL DESKTOP 1024px+ ======================== */
@media (min-width: 1024px) {
  .cs-nav {
    padding: 50px 60px;
  }

  .cs-nav__logo {
    width: 85px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 40px;
    height: 40px;
  }

  .services-page__content {
    padding: 150px 60px 60px;
  }

  .services-page__body {
    gap: 80px;
  }

  .services-page__text {
    gap: 80px;
  }

  .services-page__items {
    gap: 22px;
  }

  .services-page__label {
    font-size: 17px;
  }
}

/* ======================== RESPONSIVE — DESKTOP 1440px+ ======================== */
@media (min-width: 1440px) {
  .cs-nav {
    padding: 60px 72px;
  }

  .cs-nav__logo {
    width: 85px;
  }

  .cs-nav .hero__menu-btn svg {
    width: 45px;
    height: 45px;
  }

  .services-page__content {
    padding: 213px 72px 60px;
  }

  .services-page__body {
    gap: 80px;
  }

  .services-page__text {
    gap: 60px;
  }

  .services-page__items {
    gap: 22px;
  }

  .services-page__label {
    font-size: 18px;
  }
}
