/* LIGHT */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Light.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-LightItalic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* REGULAR */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* MEDIUM */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* SEMIBOLD */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-SemiboldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* BOLD */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-BoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

:root {
  --general-sans: "General Sans";
  --rock: #686a6c;
  --accent: #00ffc3;
  --charcoal: #404040;
  --gondola: #363636;
}

body {
  font-family: var(--general-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.container {
  max-width: 1410px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  position: relative;
}

.title {
  font-size: 48px;
  line-height: 48px;
  font-weight: 500;
  color: #000;
}

.title-light {
  font-weight: 300;
  font-style: italic;
}

strong {
  color: black !important;
  font-size: 600;
}

.descr {
  color: var(--rock);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background-color: var(--accent);
  height: 53px;
  padding: 0 30px;
  min-width: 322px;
  width: auto;
  color: #000;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
}

.mini-btn {
  font-size: 14px;
  line-height: 14px;
  min-width: auto;
  height: 40px;
  padding: 0 14px;
  max-width: none;
  width: auto;
}

/* Header Styles */
:root {
  --header-height: 75px;
}

@media (min-width: 577px) {
  :root {
    --header-height: 98px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 73px;
  background: white;
  transition: transform 0.3s ease;
}

.header-hidden {
  transform: translateY(-100%);
}

.header-spacer {
  height: 73px;
  width: 100%;
}

.header-container {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 5;
  background: white;
}

/* Header Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
}

.header-logo {
  width: 84px;
  height: 21px;
  object-fit: contain;
}

/* Burger Menu */
.burger-menu {
  display: none;
  position: relative;
  width: 20px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: 3px;
}

.burger-line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  left: 0;
}

.burger-line-top {
  top: 0;
}

.burger-line-middle-left,
.burger-line-middle-right {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line-bottom {
  bottom: 0;
}

.menu-open .burger-menu {
  transform: rotate(-45deg);
}

.menu-open .burger-line-top {
  transform: translateY(7px);
}

.menu-open .burger-line-bottom {
  transform: translateY(-7px);
}

.menu-open .burger-line-middle-left,
.menu-open .burger-line-middle-right {
  transition-delay: 0.2s;
}

.menu-open .burger-line-middle-right {
  transform: translateY(-50%) rotate(-90deg);
}

/* Desktop Navigation */
.navbar-desktop {
  display: flex;
  justify-content: center;
}

.navbar-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item {
  position: relative;
}

.navbar-link {
  color: black !important;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  /* padding: 8px 12px; */
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400 !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.navbar-link:hover {
  opacity: 0.7;
}

/* Dropdown */
.dropdown {
  position: relative;
}

header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 200px;
  height: 76px !important;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

header .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

header .dropdown-link {
  display: block;
  padding: 4px 10px;
  color: black;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.15s ease;
}

header .dropdown-link:hover {
  background-color: #f3f4f6;
}

/* Header Right */
.header-right {
  display: flex;
  justify-content: flex-end;
}

/* Button Styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 1000px;
  background-color: #00ffc3;
  color: black;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.mini-btn {
  font-size: 14px;
  line-height: 14px;
  height: 40px;
  padding: 0 20px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 24px 24px;
  z-index: 1;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  /* box-shadow: 0 4px 37px rgba(0, 0, 0, 0.25); */
}

.menu-open .mobile-menu {
  transform: translateY(0);
}

.mobile-menu-content {
  padding: 20px 16px 36px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.3);
  font-style: italic;
  text-transform: uppercase;
  margin: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-link {
  color: black;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  width: 100%;
  justify-content: space-between;
}

/* Mobile Dropdown */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
  margin-top: 12px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-link {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 0;
}

.mobile-cta {
  margin-top: 16px;
  margin-bottom: 20px;
}

/* Mobile Social */
.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.header-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 9999px !important;
  width: 48px;
  height: 32px;
  background: #eee;
}

.header-social-img {
  filter: invert(1);
}

.mobile-social-link:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-social-link svg {
  width: 18px;
  height: 18px;
}

.mobile-social-link svg path {
  fill: black;
}

/* Utility Classes */
.desktop-only {
  display: inline-flex;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar-desktop {
    display: none;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 576px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .burger-menu {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .header-right {
    display: none;
  }
}

/* HERO */

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.breadcrumbs ol {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  color: #686a6c;
}

.breadcrumbs ol li:last-child {
  color: black;
}

.hero-section {
  padding-top: 95px;
  padding-bottom: 45px;
}

.title-hero {
  font-family: var(--general-sans);
  font-weight: 500;
  font-size: 62px;
  line-height: 62px;
  max-width: 1030px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 34px;
}

.descr-hero {
  max-width: 872px;
  margin: 0 auto;
  text-align: center;
}

.img-hero {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}

.hero-btn-wrapp {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 63px;
  margin-bottom: 96px;
}

/* GRID SECTION */

.grid-section {
  padding: 80px 0 80px;
}

.title-grid {
  margin-bottom: 25px;
}

.descr-grid {
  max-width: 1280px;
  margin-bottom: 60px;
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1 auto;
  justify-content: center;
  align-items: center;
  column-gap: 32px;
  row-gap: 36px;
}

.grid-item {
  display: block;
  position: relative;
}

.grid-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 26px;
}

.grid-text-item {
  font-size: 14px;
  line-height: 19px;
  color: var(--rock);
}

.grid-text-item strong {
  font-weight: 500;
  color: black;
}

.grid-text-item ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* STEPS */

.steps-section {
  padding: 80px 0 80px;
}

.container-steps {
  max-width: 860px;
}

.title-steps {
  text-align: center;
  margin-bottom: 34px;
}

.descr-steps {
  text-align: center;
  margin-bottom: 60px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 36px;
}

.steps-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.steps-item:nth-child(odd) {
  display: flex;
  flex-direction: row-reverse;
}

.steps-item-img {
  aspect-ratio: 377/351;
  width: calc(50% - 25px);
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.steps-item-content {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.steps-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 26px;
  line-height: 28px;
}

.steps-text {
  max-width: 550px;
}

/* TEXTS */

.texts-section {
  padding: 80px 0 80px;
}
.container-texts {
  max-width: 860px;
}

.title-texts {
  text-align: center;
  margin-bottom: 92px;
}

.texts-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 36px;
}

.texts-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.texts-item:nth-child(odd) {
  justify-content: flex-end;
}

.texts-item-content {
  width: calc(50% - 25px);
}

/* INFO */

.info-section {
  padding: 80px 0 80px;
}

.container-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
  justify-content: center;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: center;
}

.info-img {
  aspect-ratio: 377/351;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

.info-content {
  padding-right: 80px;
}

.related-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.related-card {
  display: flex;
  gap: 8px;
  justify-content: start;
  flex-wrap: nowrap;
  align-items: center;
}

.related-card h4 {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 26px;
}

/* ACC */

.acc-section {
  padding: 80px 0 80px;
}

.container-acc {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
}

.acc-content {
  max-width: 342px;
  width: 100%;
  flex-shrink: 0;
}

.acc-block {
  max-width: 820px;
  width: 100%;
  flex-shrink: 0;
}

.acc-list {
  display: flex;
  flex-direction: column;
}
.acc-item {
  display: flex;
  flex-direction: column;
}

.acc-header {
  padding: 20px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  cursor: pointer;
}

.acc-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.acc-icon {
  width: 16px;
  height: 20px;
  object-fit: contain;
}

.acc-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
}

.acc-item input {
  display: none;
}

.acc-item {
  border-top: 1px solid #dfdfdf;
}

.acc-item:first-child {
  border-top: none;
}
.acc-arrow {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  transform: rotate(180deg);
}

.acc-descr {
  padding: 14px 0 32px 70px;
}

.acc-body {
  height: 0;
  overflow: hidden;
}

.acc-item input:checked ~ .acc-body {
  height: auto;
}

.acc-item input:checked ~ .acc-header .acc-arrow {
  transform: rotate(0deg);
}

/* FOOTER */

/* Footer Styles */
.footer {
  position: relative;
  background-color: rgba(25, 27, 29, 1);
  margin-top: 80px;
}

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

/* Top Content Section */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  gap: 40px;
}

.footer-nav {
  flex: 1;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list-item {
  font-size: 16px;
  line-height: 1;
  color: white;
  position: relative;
}

.footer-link {
  color: white !important;
  text-decoration: none;
  transition: opacity 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit !important;
  font-size: 16px !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.dropdown-toggle span {
  margin-right: 4px;
}

.dropdown-arrow {
  width: 8px;
  height: 8px;
  transition: transform 0.2s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #2a2c2e;
  border-radius: 6px;
  padding: 4px;
  min-width: 200px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  margin-bottom: 8px;
  z-index: 1000;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-link {
  display: block;
  padding: 8px 16px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.dropdown-link:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.social-link svg path {
  fill: white;
}

/* Huge Logo */
.footer-huge-logo {
  width: 100%;
  height: auto;
  display: block;
}

/* Bottom Section */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding: 24px 0 24px;
}

.footer-copyright-left {
  display: flex;
  justify-content: flex-start;
}

.footer-ukraine {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright-right {
  display: flex;
  justify-content: flex-end;
}

.footer-copyright-text {
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.ukraine-link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.ukraine-link:hover {
  opacity: 0.7;
}

.ukraine-link svg {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile specific classes */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-list {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 32px 0 32px;
    gap: 20px;
  }

  .footer-nav {
    padding-left: 16px;
  }

  .footer-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
    padding: 0 16px;
  }

  .footer-bottom {
    padding: 24px 0 32px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
    justify-content: center;
    padding-bottom: 32px;
  }

  .dropdown-menu {
    left: 0;
    min-width: 250px;
  }
}

.footer-social-link {
  background: transparent !important;
  border-radius: 1000px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  width: 70px !important;
  height: 40px !important;
}

@media (max-width: 576px) {
  .footer {
    margin-top: 40px;
  }

  .footer-nav {
    padding-left: 0;
  }

  .footer-content {
    padding: 24px 0;
  }

  .footer-bottom {
    padding: 20px 0 20px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 14px;
    line-height: 18px;
  }

  .title {
    font-size: 28px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
  }

  .header {
    position: fixed;
    top: 0;
    z-index: 50;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 75px;
    background: white;
  }

  .header-skelet {
    width: 100vw;
    height: 75px;
  }

  .navbar-list {
    display: none;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .mini-btn {
    min-width: auto;
  }

  .hero-section {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .title-hero {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 22px;
  }
  .hero-btn-wrapp {
    margin-top: 33px;
    margin-bottom: 46px;
  }

  .grid-section {
    padding: 40px 0 40px;
  }
  .descr-grid {
    margin-bottom: 30px;
  }

  .grid-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1 auto;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    row-gap: 20px;
  }

  .grid-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .steps-section {
    padding: 40px 0 40px;
  }

  .title-steps {
    text-align: center;
    margin-bottom: 30;
  }

  .descr-steps {
    text-align: center;
    margin-bottom: 30px;
  }

  .steps-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, auto);
    gap: 20px;
  }

  .steps-item {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    flex-direction: column !important;
    align-items: center;
    gap: 24px;
  }

  .steps-item:nth-child(odd) {
    display: grid;
    flex-direction: row-reverse;
  }

  .steps-item-img {
    aspect-ratio: 377/351;
    width: calc(100% - 12px);
    height: auto;
    object-fit: cover;
    border-radius: 24px;
  }

  .steps-item-content {
    width: calc(100% - 12px);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }

  .steps-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 24px;
  }

  .texts-section {
    padding: 40px 0 40px;
  }

  .title-texts {
    text-align: center;
    margin-bottom: 40px;
  }

  .texts-list {
    gap: 20px;
  }

  .texts-item-content {
    width: 100%;
  }

  .info-section {
    padding: 40px 0 40px;
  }

  .container-info {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .info-content {
    gap: 20px;
  }

  .info-img {
    aspect-ratio: 377/351;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
  }

  .info-content {
    padding-right: 0px;
  }

  .acc-section {
    padding: 40px 0 40px;
  }

  .container-acc {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
  }

  .acc-header {
    padding: 16px 0 16px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    cursor: pointer;
  }

  .acc-title {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .acc-name {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
  }

  .footer {
    padding: 50px 0 0;
    background: #252525;
    border-top-left-radius: 37px;
    border-top-right-radius: 37px;
  }

  .footer-content {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--charcoal);
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }

  .footer-list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    align-items: start;
  }

  .footer-social {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .footer-copyright {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px 0 26px;
    gap: 20px;
    border-top: 1px solid var(--charcoal);
    justify-content: space-between;
    align-items: center;
  }
}
