* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-orange: #ff9f00;
  --color-orange1: #f4631e;
  --color-dark-orange: #cb0404;
  --gradient-orange: linear-gradient(
    90deg,
    var(--color-orange),
    var(--color-orange1),
    var(--color-dark-orange)
  );
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

header {
  padding: 2rem;
  display: flex;
  border-bottom: 1px solid #333;
}

header a,
.logo-footer a {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 600;
}

header a img,
.logo-footer a img {
  max-width: 80px;
}

main section:first-of-type ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}
.info-block {
  max-width: 30%;
}
.info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-item p {
  font-size: 16px;
}
.img-logo {
  max-width: 160px;
  height: 50px;
}
.button {
  background: linear-gradient(
    90deg,
    var(--color-orange),
    var(--color-orange1),
    var(--color-dark-orange)
  );
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.5s ease;
  border-radius: 2rem;
}
.button:hover {
  background: linear-gradient(
    270deg,
    var(--color-orange),
    var(--color-orange1),
    var(--color-dark-orange)
  );
}
.text-small {
  font-size: 12px;
  padding: 5px;
  background-color: #333;
}
main section:first-of-type li {
  background-color: #222;
  flex: 1 1 calc(33.333% - 1rem);
  border: 1px solid #333;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

main section:first-of-type li p:last-of-type {
  margin-top: auto;
}

main section + section {
  padding: 2rem;
}

main section + section div {
  margin-bottom: 1.5rem;
}

main section + section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #000;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

footer nav ul {
  justify-content: center;
}

footer p {
  text-align: center;
  margin: 1rem 0;
}

footer div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.advantages-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 60px auto;
}

.intro-text {
  flex: 1 1 40%;
  color: #fff;
}

.advantages-list {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

.advantage-card {
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 8px;
  background-color: #1a1a1a;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #fff;
}

.advantage-card i {
  font-size: 1.5rem;
  color: #f4631e;
}

.advantage-card p {
  margin: 0;
  font-size: 0.95rem;
}
.filter-img {
  filter: invert(1);
}
.resp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.resp-link img {
  max-width: 140px;
}
.nav-footer {
  background-color: #333;
  padding: 40px;
}
.nav-footer li {
  font-size: 24px;
  transition: color cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
}
.nav-footer li:hover,
.active {
  color: #f4631e;
}
.disclaimer {
  text-align: left;
  max-width: 1200px;
  margin: 40px auto;
}
.contact-section {
  padding: 3rem 1rem;
  background-color: #111;
  color: #fff;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-container p {
  margin-bottom: 2rem;
  color: #ccc;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #444;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4631e;
  outline: none;
}

.contact-form button {
  background: linear-gradient(90deg, #ff9f00, #f4631e, #cb0404);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.4s ease;
}

.contact-form button:hover {
  background: linear-gradient(270deg, #ff9f00, #f4631e, #cb0404);
}

.contact-form .privacy-note,
.contact-form .powered {
  font-size: 0.75rem;
  text-align: center;
  color: #888;
}

.contact-form .privacy-note a,
.contact-form .powered a {
  color: #f4631e;
  text-decoration: underline;
}
.cookie-icon {
  position: fixed;
  bottom: 40px;
  left: 20px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 159, 0, 0.5);
  cursor: pointer;
  z-index: 1000;
  transition: background 0.3s;
}

.cookie-icon:hover {
  background-color: #333;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
  width: 90%;
  max-width: 500px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 0 15px rgba(255, 100, 0, 0.3);
}

.cookie-modal-content h2 {
  margin-bottom: 1rem;
}

.cookie-modal-content p {
  margin-bottom: 1.5rem;
  color: #ccc;
}

.cookie-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-buttons button {
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(90deg, #ff9f00, #f4631e, #cb0404);
  color: white;
  transition: background 0.4s ease;
}

.cookie-buttons button:hover {
  background: linear-gradient(270deg, #ff9f00, #f4631e, #cb0404);
}
.material-symbols-outlined {
  font-size: 48px;
}
.age-popup {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: all 0.3s ease;
}

.age-popup.hidden {
  display: none;
}

.age-popup-content {
  background-color: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(255, 100, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
}

.age-popup-content h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.age-buttons button {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  color: white;
  background: linear-gradient(90deg, #ff9f00, #f4631e, #cb0404);
  transition: background 0.4s ease;
}

.age-buttons button:hover {
  background: linear-gradient(270deg, #ff9f00, #f4631e, #cb0404);
}

@media (max-width: 768px) {
  .nav-footer li {
    font-size: 18px;
  }
  .advantages-section {
    flex-direction: column;
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }
  main section:first-of-type ul {
    flex-direction: column;
  }

  main section:first-of-type li {
    flex: 1 1 100%;
  }

  footer ul {
    flex-direction: column;
    align-items: center;
  }

  footer nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  footer div {
    flex-direction: column;
    text-align: center;
  }
  header a img {
    max-width: 40px;
  }
  header a {
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
  }
  .info-item {
    gap: 20px;
    flex-direction: column;
  }
  .info-block {
    max-width: 100%;
  }
  .img-logo {
    max-width: 190px;
    height: 50px;
  }
  .disclaimer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
