/* Global Styles */

/* Import Tailwind CSS Base Styles */
@import url("./tailwind.css");

/* Roboto */
@font-face {
  font-family: "Roboto";
  src: url("/assetsFASGW/fontsSAD/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assetsFASGW/fontsSAD/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assetsFASGW/fontsSAD/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --1: #232323;
  --2: #f9e70d;
  --3: #d0011c;
  --4: #6dc21f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000;
  background: #f4f5f7;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 1300px) {
  .container {
    padding: 0 15px;
  }
}

/* Global Styles */

/* Header */

header {
  padding: 10px 0;
}

.header_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.first_header img {
  max-width: 271px;
  height: 53px;
}

.second_header nav ul {
  display: flex;
  gap: 60px;
}

.second_header nav ul li a {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Burger Menu */
.burger_menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 100;
  background: none;
  border: none;
  padding: 0;
}

.burger_menu span {
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 1px;
  transition: all 0.3s ease;
  display: block;
}

/* Три полоски бургера */
.burger_menu span:nth-child(1) {
  transform-origin: center center;
}

.burger_menu span:nth-child(2) {
  margin: 5px 0;
}

.burger_menu span:nth-child(3) {
  transform-origin: center center;
}

/* Анимация в крестик */
.burger_menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger_menu.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.burger_menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Альтернативный вариант - более чистый крестик */
.burger_menu.alternative span {
  transition: all 0.3s ease;
}

.burger_menu.alternative.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  width: 100%;
}

.burger_menu.alternative.active span:nth-child(2) {
  opacity: 0;
}

.burger_menu.alternative.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  width: 100%;
}

@media (max-width: 1130px) {
  .burger_menu {
    display: flex;
    order: 1;
  }

  .first_header {
    order: 2;
  }

  .second_header {
    z-index: 10;
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 110, 255, 0.2);
    padding: 20px 0;
  }

  .second_header.active {
    display: block;
    height: 100vh;
  }

  .second_header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0 15px;
  }

  .second_header nav ul li {
    border-bottom: 1px solid rgba(20, 110, 255, 0.1);
  }

  .second_header nav ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }
}

/* END Burger Menu */

/* END Header */

/* hero  */

.hero_section {
  height: 100vh;
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url("/assetsFASGW/imagesFAaf/backgroundFAW/heroYFcT.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .hero_section {
    background-position: top;
    padding-top: 30px;
    height: 120vh;

    padding-bottom: 0;
  }
}

.hero_section .hero_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hero_section .hero_content h1 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: clamp(36px, 3vw, 48px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero_section .hero_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero_section .hero_content a {
  width: 100%;
  max-width: 190px;
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--3, #d0011c);

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* end hero  */

.biglietti_Section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.biglietti_Section .biglietti_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.biglietti_Section .biglietti_content h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.biglietti_Section .biglietti_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.biglietti_Section .biglietti_content ul {
  display: flex;
  padding: 30px 0;
  align-items: stretch;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.biglietti_Section .biglietti_content ul li {
  display: flex;
  width: 100%;
  max-width: 366px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
  transition: all 1s ease;
}

.biglietti_Section .biglietti_content ul li:hover {
  transition: all 1s ease;

  border-radius: 20px;
  border: 1px solid var(--4, #6dc21f);
  background: radial-gradient(
    126.87% 98.3% at 40.87% 26.67%,
    #deffc0 0%,
    #fff 100%
  );
  box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
  cursor: pointer;

  transition: all 0.6s ease;
}

.biglietto_header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.biglietti_Section .biglietti_content ul li b {
  color: var(--4, #6dc21f);
  text-align: center;
  font-family: Roboto;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.biglietti_Section .biglietti_content ul li h3 {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.biglietti_Section .biglietti_content ul li p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.biglietti_Section .biglietti_content ul li a {
  width: 100%;
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  border-radius: 100px;
  background: var(--3, #d0011c);

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.biglietti_Section .biglietti_content ul li:nth-child(1):hover {
  animation: rotateInLeft 1s ease forwards;
}

.biglietti_Section .biglietti_content ul li:nth-child(3):hover {
  animation: rotateInRight 1s ease forwards;
}

.funziona_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.funziona_section .funziona_content {
  display: flex;

  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.funziona_section .funziona_content h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.funziona_section .funziona_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.funziona_section .funziona_content ul {
  display: flex;
  padding: 30px 0;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.funziona_section .funziona_content ul .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  max-width: 334px;
  align-self: stretch;
  min-width: 280px;
  animation: getBordered 1s ease forwards;
}

.funziona_section .funziona_content ul .item:hover {
  /* animation: slideIn 0.5s ease forwards; */
}

.funziona_section .funziona_content b {
  display: flex;
  width: 48px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--2, #f9e70d);
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.vincitori_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.vincitori_section .vincitori_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.vincitori_section .vincitori_content h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.vincitori_section .vincitori_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.vincitori_section .vincitori_content ul {
  display: flex;
  padding: 30px 0;
  align-items: center;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1300px) {
  .vincitori_section .vincitori_content ul {
    flex-wrap: wrap;
  }
}

.vincitori_section .vincitori_content ul li {
  display: flex;
  width: 100%;
  min-width: 290px;
  max-width: 367px;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  border-radius: 20px;
  border: 1px solid var(--4, #6dc21f);
  background: #fff;
  box-shadow: 0 0 8.4px 0 #6dc21f;
}

.vincitori_section .vincitori_content ul li h3 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.vincitori_section .vincitori_content ul li .greenSubtitle {
  width: 100%;
  display: flex;
  padding: 10px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;

  border-radius: 100px;
  background: var(--4, #6dc21f);
  box-shadow: 0 0 8.4px 0 #6dc21f;

  /* font style  */

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.vincitori_section .vincitori_content ul li .author {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.vincitori_section .vincitori_content ul li .author b {
  display: flex;
  width: 43px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--3, #d0011c);

  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.vincitori_section .vincitori_content ul li strong {
  color: rgba(35, 35, 35, 0.7);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: start;
  align-self: start;
}

.about_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.about_section .about_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.text_content p {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about_content h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about_content .paragraph .first_image {
  background-image: url("/assetsFASGW/imagesFAaf/firstImageoZHi.webp");
}
.about_content .paragraph .second_image {
  background-image: url("/assetsFASGW/imagesFAaf/secondImagegltz.webp");
}

.about_content .paragraph .first_image,
.about_content .paragraph .second_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-width: 559px;

  max-width: 560px;
  height: 256px;
}

.about_content .paragraph {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.disclaimer {
  display: flex;
  padding: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid var(--3, #d0011c);
  background: #fff;
  box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
}

.disclaimer p {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

footer {
  display: flex;
  padding: 70px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  align-self: stretch;
  background: var(--1, #232323);
}
.footer_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  align-self: stretch;
}
footer .first_line {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
  align-items: center;
}

footer .first_line img {
  width: 271px;
  height: 53px;
}

footer nav {
  width: 100%;
}

footer nav ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: wrap;
}

footer nav ul li a {
  color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.pre_last {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}

.pre_last p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pre_last button {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

footer strong {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer_disclaimer {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  max-width: 100%;
  padding: 20px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
}

.comegiocare_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.comegiocare_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.comegiocare_content h1 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.comegiocare_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.comegiocare_content ul {
  display: flex;
  padding: 30px 0;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.comegiocare_content ul .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  max-width: 334px;
  align-self: stretch;
  min-width: 280px;
}

.comegiocare_content ul .item b {
  display: flex;
  width: 86px;
  height: 86px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--4, #6dc21f);
}

.comegiocare_content ul .item h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.comegiocare_content ul .item p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .about_content .paragraph {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .about_content .paragraph .first_image,
  .about_content .paragraph .second_image {
    min-width: 260px;

    width: clamp(320px, 20vw, 560px);
  }
  .disclaimer {
    padding: 15px;
  }

  footer .first_line {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }

  footer nav ul {
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .funziona_section .funziona_content ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
  }
  .funziona_section .funziona_content ul .item {
    max-width: 230px;
  }

  .funziona_section .funziona_content ul .arrow,
  .comegiocare_content ul .arrow {
    max-width: 100%;
    /* animation: rotateDownArrow 2s infinite; */
    transform: rotate(90deg);
  }
}

@keyframes getBordered {
  from {
    border: 1px solid transparent;
    padding: 5px;
    border-radius: 12px;

    background: radial-gradient(
      126.87% 98.3% at 40.87% 26.67%,
      #deffc0 0%,
      #fff 100%
    );
    box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);

    transition: all 3s ease;
  }
  to {
    background: none;
    box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
    border: 1px solid var(--4, #6dc21f);
    padding: 10px;
    border-radius: 25px;
    transition: all 3s ease;
  }
}

@keyframes rotateDownArrow {
  0% {
    transform: translateY(0);
    transition: all 1s ease;
  }
  50% {
    transform: translateY(10px);
    transition: all 1s ease;
  }
  100% {
    transform: translateY(0);
    transition: all 1s ease;
  }
}
@keyframes rotateInLeft {
  from {
    transform: rotate(0deg);
    transition: all 1s ease;
  }
  to {
    transform: rotate(-2deg);
    transition: all 1s ease;
  }
}

@keyframes rotateInRight {
  from {
    transform: rotate(0deg);
    transition: all 1s ease;
  }
  to {
    transform: rotate(2deg);
    transition: all 1s ease;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-50%) translateY(150px);
  }
}

/* FAQ Accordion Styles */
.faq_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.faq_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.faq__title {
  color: #232323;
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.faq__description {
  color: #232323;
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 30px 0;
}

.faq__item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  justify-content: space-between;
  align-self: stretch;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #f9e70d;
  background: #fff;
  transition: all 0.3s ease;
}

.faq__item.active {
  border-color: #6dc21f;
  background: #fff;
}

.faq__question {
  color: #232323;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 10px;
}

/* Стили для кнопки-иконки без видимых стилей */
.faq__toggle-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  outline: none;
}

.faq__toggle-btn:focus {
  outline: 2px solid #6dc21f;
  outline-offset: 2px;
  border-radius: 2px;
}

.faq__toggle-btn:focus:not(:focus-visible) {
  outline: none;
}

.faq__item.active .faq__question {
  padding-bottom: 20px;
}

.faq__icon {
  min-width: 14px;
  min-height: 8px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  color: #232323;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  opacity: 1;
  transition: all 0.3s ease;
  border-top: 1px solid rgba(35, 35, 35, 0.2);
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .faq__list {
    max-width: 100%;
  }

  .faq__title {
    font-size: 24px;
  }
}

.disponibili_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.disponibili_section .disponibili_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  align-self: stretch;
}

.disponibili_section .disponibili_content h1 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.disponibili_section .disponibili_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.disponibili_list {
  display: flex;
  align-items: center;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  justify-content: center;
}

@media (max-width: 1300px) {
  .disponibili_list {
    flex-wrap: wrap;
  }
}

.disponibili_list li {
  display: flex;
  width: 100%;
  min-width: 300px;
  max-width: 367px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;

  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
}

.disponibili_list li .heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.disponibili_list li .heading h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.disponibili_list li p {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.disponibili_list li span {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contatti_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.contatti_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.contatti_content h1 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contatti_content p {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contatti_content .contatti_content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 1300px) {
  .contatti_content .contatti_content {
    flex-direction: column;
  }
}

/* =========================
   Contact Form Styles
========================= */

.form_container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media (max-width: 1300px) {
  .form_container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 753px;
}

.form_row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.form_row_two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .form_row_two {
    grid-template-columns: 1fr;
  }
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_group label {
  color: #232323;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.form_group input,
.form_group textarea {
  padding: 14px 16px;
  color: rgba(35, 35, 35, 1);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 5px;
  background: #d8d8d8;
  transition: all 0.3s ease;
  resize: vertical;
}

.form_group input:focus,
.form_group textarea:focus {
  outline: none;
  border-color: #f9e70d;
  background: white;
  box-shadow: 0 0 0 3px rgba(249, 231, 13, 0.1);
}

.form_group input::placeholder,
.form_group textarea::placeholder {
  color: #999;
}

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

.form_checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #6dc21f;
  flex-shrink: 0;
}

.form_checkbox label {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
  margin: 0;
}

.form_checkbox a {
  color: var(--4, #6dc21f);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.3s ease;
}

.form_checkbox a:hover {
  color: #e6d500;
}

.form_button {
  width: 100%;

  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  letter-spacing: 0.5px;
  border-radius: 100px;
  border: 2px solid var(--3, #d0011c);

  color: var(--3, #d0011c);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.form_button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 231, 13, 0.3);
}

.form_button:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(249, 231, 13, 0.2);
}

.form_button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Notification Styles */
.contact_notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translateX(450px);
  background: linear-gradient(135deg, #6dc21f 0%, #5aa91a 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 400px;
  min-width: 300px;
}

.contact_notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .contact_notification {
    left: 20px;
    right: 20px;
    bottom: 20px;
    transform: translateY(150px);
    min-width: auto;
  }

  .contact_notification.show {
    transform: translateY(0);
  }
}

.notification_content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.notification_icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  color: white;
  animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.contact_info {
  display: flex;
  width: 100%;
  max-width: 367px;
  max-height: 264px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 8.4px 0 rgba(0, 0, 0, 0.15);
}

.contact_info h2 {
  color: var(--1, #232323);
  text-align: center;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.contact_info p {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact_info b {
  display: flex;
  width: 47px;
  height: 47px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background: var(--4, #6dc21f);
}

.info_part {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.privacy_section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.privacy_section .privacy_content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.privacy_section .privacy_content h1 {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.privacy_section .privacy_content p,
.privacy_section .privacy_content li {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.privacy_section .privacy_content span {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.privacy_section .privacy_content ul {
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 25px;
}

.privacy_section .privacy_content a {
  color: var(--1, #232323);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.age-popup-content {
  display: inline-flex;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid var(--4, #6dc21f);
  background: var(--1, #232323);
  width: 100%;
  max-width: 460px;
}

.age-popup-content span {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.age-popup-content p {
  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.age_btns {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  justify-content: center;
}

.age_btns button {
  width: 100%;
  display: flex;
  padding: 15px 17px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 100px;
  background: rgba(208, 1, 28, 0.2);

  border: 1px solid transparent;

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

.age_btns a {
  cursor: pointer;

  width: 100%;
  display: flex;
  padding: 15px 17px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 100px;
  background: transparent;

  border-radius: 100px;
  border: 1px solid var(--3, #d0011c);

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  z-index: 9998;
  animation: slideUpFromBottom 0.5s ease-out;
}

@keyframes slideUpFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-popup-content {
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 0 0;
  border-top: 1px solid var(--4, #6dc21f);
  background: var(--1, #232323);
  max-width: 100%;
  border-radius: 20px 20px 0 0;
}

.cookie-popup-content span {
  color: #fff;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cookie-popup-content p {
  color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.cookie_btns {
  width: 100%;

  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.cookie_btns button {
  display: flex;
  width: 100%;
  max-width: 320px;
  padding: 15px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: rgba(208, 1, 28, 0.2);
  border: 1px solid transparent;

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.cookie_btns a {
  display: flex;
  width: 100%;
  max-width: 320px;
  padding: 15px 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: transparent;

  border: 1px solid var(--3, #d0011c);

  color: #fff;
  text-align: center;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
