/* Fonts */
@font-face {
  font-family: "Ruberoid";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6026eb1f7a648171b19c7b5d/fonts/ruberoid-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ruberoid";
  src: url("https://anima-uploads.s3.amazonaws.com/projects/6026eb1f7a648171b19c7b5d/fonts/ruberoid-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Reset */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}

a {
  text-decoration: none;
}

/* Design Tokens */
:root {
  /* Page Layout */
  --page-max: 1440px;
  --page-gutter: clamp(16px, 4vw, 32px);

  /* Colors */
  --flash-white: rgba(241, 243, 245, 1);
  --spring-green: rgba(58, 241, 133, 1);
  --jet: rgba(58, 58, 58, 1);
  --white: rgba(255, 255, 255, 1);
  --emerald: rgba(61, 208, 120, 1);
  --pigment-green: rgba(35, 168, 89, 1);

  /* Typography */
  --font-family-primary: "Ruberoid", system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Font Sizes */
  --fs-body: 16px;
  --fs-subtitle: 16px;
  --fs-h4: 20px;
  --fs-h3: 30px;
  --fs-h2: 32px;
  --fs-h1: 40px;

  /* Line Heights */
  --lh-body: 150%;
  --lh-subtitle: 150%;
  --lh-h4: 150%;
  --lh-h2: 129.99999523162842%;
  --lh-h1: 129.99999523162842%;

  /* Letter Spacing */
  --ls-body: 0px;
  --ls-subtitle: 0px;
  --ls-h4: 0px;
  --ls-h2: 0px;
  --ls-h1: 1.2px;

  /* Border Radius */
  --border-radius-card: 16px;
  --border-radius-card-inner: 12px;
  --border-radius-button: 12px;
}

/* Container Rule */
:where(header, section, footer) > :is(.u-container, [class$="__container"]) {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  overflow: hidden;
  color: var(--white);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--page-max);
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 220px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.hero__subtitle {
  position: relative;
  align-self: stretch;
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--flash-white);
  font-size: var(--fs-body);
  text-align: center;
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
}

.hero__main {
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.hero__title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.hero__title {
  position: relative;
  flex: 1;
  margin: 0;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--spring-green);
  font-size: var(--fs-h1);
  text-align: center;
  letter-spacing: var(--ls-h1);
  line-height: var(--lh-h1);
  font-style: normal;
}

.hero__description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.hero__text {
  position: relative;
  align-self: stretch;
  margin: 0;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--flash-white);
  font-size: var(--fs-body);
  text-align: center;
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Button Component */
.button {
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
  position: relative;
  border-radius: var(--border-radius-button);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  border: none;
  font-family: inherit;
}

.button--primary {
  background-color: var(--spring-green);
}

.button--ghost {
  border: 2px solid var(--spring-green);
  background-color: transparent;
}

.button__icon {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    height: 24px;
}

.button--ghost:hover .button__icon {
    width: 24px;
    opacity: 1;
    margin-left: 8px;
}

.button__text {
  position: relative;
  width: fit-content;
  font-family: "Ruberoid", Helvetica;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 24px;
  white-space: nowrap;
}

.button--primary .button__text {
  color: var(--jet);
}

.button--ghost .button__text {
  color: var(--white);
}

.button--primary:hover {
  background-color: var(--emerald);
}

.button--ghost:hover {
  background-color: rgba(58, 241, 133, 0.1);
}

.button:active {
  transform: translateY(0);
}

/* Process Section */
.process {
  align-items: center;
  gap: 40px;
  padding: 80px 146px;
  background-color: var(--flash-white);
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.process__container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.process__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.process__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.process__title-wrapper {
  position: relative;
  align-self: stretch;
  margin-top: -0.43px;
}

.process__title {
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--jet);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  font-style: normal;
  margin: 0;
}

.process__description {
  position: relative;
  align-self: stretch;
}

.process__text {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--jet);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.process__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.process__item {
  display: flex;
  flex-direction: column;
  min-width: 190px;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--white);
  border-radius: var(--border-radius-card);
}

.process__step {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.process__step-number {
  display: flex;
  flex-direction: column;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 4px 10px;
  position: relative;
  background-color: var(--flash-white);
  border-radius: 100px;
}

.process__number {
  position: relative;
  width: 11px;
  height: 25px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-semibold);
  color: #3a3a3a;
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-h4);
  line-height: var(--lh-h4);
  white-space: nowrap;
  font-style: normal;
}

.process__line {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 4px; 
    overflow: hidden;
}

.process__line-image {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    /* АБО object-fit: contain; - Якщо ви хочете, щоб зображення повністю вмістилось у 4px висоти, можливо з пустими ділянками по боках */
    display: block; 
}

.process__step-title {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-semibold);
  color: #3a3a3a;
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-h4);
  line-height: var(--lh-h4);
  font-style: normal;
  margin: 0;
}

.process__step-description {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: #3a3a3a;
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.process__footnote {
  position: relative;
  align-self: stretch;
}

.process__footnote-text {
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--jet);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

/* Join Section */
.join {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 146px;
  align-self: stretch;
  width: 100%;
  background-image: url(https://c.animaapp.com/lHqjhN4s/img/join-in.png);
  background-size: cover;
  background-position: 50% 50%;
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
}

.join__container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
  gap: 40px;
  display: grid;
}

.join__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 39px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.join__title {
  position: relative;
  width: fit-content;
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--white);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  white-space: nowrap;
  font-style: normal;
  margin: 0;
}

.join__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.join__options {
  display: flex;
  flex-direction: column;
  max-width: 564px;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.join-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 16px;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.join-option__title {
  position: relative;
  width: fit-content;
  margin-top: -2.00px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-semibold);
  color: var(--white);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-h4);
  line-height: var(--lh-h4);
  white-space: nowrap;
  font-style: normal;
  margin: 0;
}

.join-option__description {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--white);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.join__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Benefits Section */
.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 146px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white);
}

.benefits__container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.benefits__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.benefits__title-wrapper {
  position: relative;
  align-self: stretch;
}

.benefits__title {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--jet);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  font-style: normal;
  margin: 0;
}

.benefits__description {
  position: relative;
  align-self: stretch;
}

.benefits__text {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--jet);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.benefits__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px 30px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.benefits__column {
  display: flex;
  flex-direction: column;
  min-width: 253px;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--flash-white);
  border-radius: var(--border-radius-card);
}

.benefit-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.benefit-card__icon {
  position: relative;
  width: 60px;
  height: 60px;
  aspect-ratio: 1;
}

.benefit-card__title {
  position: relative;
  flex: 1;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-semibold);
  color: var(--jet);
  font-size: var(--fs-h4);
  letter-spacing: var(--ls-h4);
  line-height: var(--lh-h4);
  font-style: normal;
  margin: 0;
}

.benefit-card__description {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--jet);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

/* CTA Section */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 200px 146px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-image: url(https://c.animaapp.com/lHqjhN4s/img/insert.png);
  background-size: cover;
  background-position: 50% 50%;
}

.cta__container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.cta__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 20px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.cta__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.cta__title-wrapper {
  position: relative;
  align-self: stretch;
}

.cta__title {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--white);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  font-style: normal;
  margin: 0;
}

.cta__description {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--flash-white);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.cta__contact {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: blur(2px) brightness(100%);
  -webkit-backdrop-filter: blur(2px) brightness(100%);
  background: linear-gradient(
    185deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  flex-direction: column;
  position: relative;
  flex: 0 0 auto;
}

.cta__contact-text {
  position: relative;
  align-self: stretch;
  margin-top: -2.00px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-medium);
  color: #3a3a3a;
  font-size: var(--fs-subtitle);
  letter-spacing: var(--ls-subtitle);
  line-height: var(--lh-subtitle);
  font-style: normal;
  margin: 0;
}

.cta__social {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  position: relative;
  flex: 0 0 auto;
}

.social-link {
  display: inline-flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  text-decoration: none;
}

.social-link:hover {
  opacity: 0.8;
}


.social-link__wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--emerald);
}

.social-link__text {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Ruberoid", Helvetica;
  font-weight: 700;
  color: var(--emerald);
  font-size: 16px;
  letter-spacing: 2.00px;
  line-height: 21.6px;
  white-space: nowrap;
}

.social-link__icon {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
}

/* FAQ Section */
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 146px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white);
}

.faq__container {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  box-sizing: border-box;
}

.faq__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.faq__title-wrapper {
  position: relative;
  align-self: stretch;
}

.faq__title {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-bold);
  color: var(--jet);
  font-size: var(--fs-h2);
  letter-spacing: var(--ls-h2);
  line-height: var(--lh-h2);
  font-style: normal;
  margin: 0;
}

.faq__description {
  position: relative;
  align-self: stretch;
}

.faq__text {
  margin-top: -0.43px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-regular);
  color: var(--jet);
  font-size: var(--fs-body);
  letter-spacing: var(--ls-body);
  line-height: var(--lh-body);
  font-style: normal;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq__item {
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius-card-inner);
  border: 1px solid var(--flash-white);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.faq-item:hover {
    background: var(--flash-white);
}

.faq-item__toggle {
  display: flex;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  cursor: pointer;
}

.faq-item__question {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--font-family-primary);
  font-weight: var(--fw-medium);
  color: var(--jet);
  font-size: var(--fs-subtitle);
  letter-spacing: var(--ls-subtitle);
  line-height: var(--lh-subtitle);
  font-style: normal;
  margin: 0;
}

.faq-item__answer {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  padding-top: 16px;
}

.faq-item__text {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Ruberoid", Helvetica;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22.4px;
  margin: 0;
}

.faq-item__text-span {
  color: #3a3a3a;
}

.faq-item__link {
  color: #23a859;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }

  .process,
  .join,
  .benefits,
  .cta,
  .faq {
    padding: 40px 20px;
  }

  .process__list {
    flex-direction: column;
  }

  .benefits__column {
    flex-direction: column;
  }
.hero__title {
      font-size: var(--fs-h3);
  }
  .cta__content {
    flex-direction: column;
  }
.cta {
    padding-top: 20vh;
    padding-bottom: 15vh;
}
  .cta__social {
    display: flow;
  }
  a.social-link {
    width: 49%;
}
  .hero__content {
    padding: 60px 0px;
}
}

/* Skip Link for Screen Readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--spring-green);
  color: var(--jet);
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Нові стилі для іконок FAQ */
.faq-item__toggle {
  justify-content: space-between; /* Розміщує іконку праворуч */
  list-style: none; /* Прибирає стандартний маркер */
}

.faq-item__toggle::-webkit-details-marker {
  display: none; /* Прибирає стандартний маркер для Safari */
}

.faq-item__toggle::after {
  content: '+'; /* Знак плюса за замовчуванням */
  font-size: 28px;
  font-weight: 400;
  color: var(--jet);
  transition: transform 0.2s ease-in-out;
  padding: 0 10px;
}

.faq-item[open] > .faq-item__toggle::after {
  content: '−'; /* Знак мінуса, коли відкрито */
  transform: rotate(180deg);
}