* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #f8f8f8;
  background-color: #121212;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 335px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  color: #ff4500;
  margin-top: 0;
  margin-bottom: 1em;
  line-height: 1.2;
}

.title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .title {
    font-size: 3rem;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff4500;
  color: #f8f8f8;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #cc3700;
}

.header {
  background-color: #0a0a0a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #00bfff;
  font-weight: bold;
  text-decoration: none;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .header__logo {
    font-size: 2rem;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #0a0a0a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  animation: fadeInDown 0.3s ease-out;
}
.header__menu {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav.active .header__menu {
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.header__menu-link {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #f8f8f8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #ff4500;
}
.header__nav.active .header__menu-link {
  font-size: 1.1rem;
  padding: 5px 0;
  width: 100%;
  text-align: center;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #f8f8f8;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 50px 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff4500;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4.5rem;
  }
}
.hero__text {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f8f8f8;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 1.2rem;
  }
}

.about {
  padding: 60px 0;
  background-color: #121212;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.about__content {
  flex: 1;
  text-align: center;
}
@media (min-width: 1024px) {
  .about__content {
    text-align: left;
  }
}
.about__description {
  margin-bottom: 25px;
}
.about__text {
  margin-bottom: 1rem;
  color: #f8f8f8;
}
.about__img {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .about__img {
    min-height: 350px;
  }
}
@media (min-width: 1024px) {
  .about__img {
    min-height: 450px;
  }
}

.features {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .features__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.features__item {
  background-color: #121212;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.features__item:hover {
  transform: translateY(-5px);
}
.features__item-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00bfff;
}
.features__item-text {
  font-size: 0.95rem;
  color: #f8f8f8;
}

.testimonials {
  padding: 60px 0;
  background-color: #121212;
  text-align: center;
}
.testimonials__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .testimonials__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonials__item {
  background-color: #0a0a0a;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-top: 40px;
}
.testimonials__item-author {
  display: block;
  font-weight: bold;
  color: #ff4500;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonials__item-text {
  font-style: italic;
  color: #f8f8f8;
}

.gallery {
  padding: 60px 0;
  background-color: #0a0a0a;
  text-align: center;
}
.gallery__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1440px) {
  .gallery__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gallery__item {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.contact {
  padding: 60px 0;
  background-color: #121212;
  text-align: center;
}
.contact__form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-status {
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.contact__form-status.success {
  background-color: rgba(50, 205, 50, 0.2);
  color: limegreen;
  opacity: 1;
}
.contact__form-status.error {
  background-color: rgba(255, 69, 0, 0.2);
  color: #ff4500;
  opacity: 1;
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
  }
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ff4500;
  border-radius: 5px;
  background-color: #1f1f1f;
  color: #f8f8f8;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.3);
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: white;
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: white;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .btn {
  align-self: center;
  width: 100%;
}
@media (min-width: 768px) {
  .contact .btn {
    width: auto;
    min-width: 200px;
  }
}

.footer {
  background-color: #0a0a0a;
  padding: 40px 0;
  text-align: center;
  color: #f8f8f8;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer__block {
  text-align: left;
}
.footer__logo {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  color: #00bfff;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}
.footer__title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: #ff4500;
  margin-bottom: 15px;
}
.footer__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #f8f8f8;
}
.footer__menu-item {
  margin-bottom: 8px;
}
.footer__menu-link, .footer__contact-link {
  font-size: 0.9rem;
  color: #f8f8f8;
  transition: color 0.3s ease;
}
.footer__menu-link:hover, .footer__contact-link:hover {
  color: #ff4500;
}
.footer__contact-item {
  margin-bottom: 8px;
}
.footer__copy {
  margin-top: 30px;
  font-size: 0.85rem;
  color: white;
  border-top: 1px solid rgba(248, 248, 248, 0.1);
  padding-top: 20px;
  text-align: center;
}

.legal {
  padding: 60px 0;
  background-color: #121212;
  color: #f8f8f8;
  line-height: 1.8;
}
.legal .container {
  text-align: left;
}
.legal__title {
  font-size: 2.8rem;
  color: #ff4500;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 3.2rem;
  }
}
@media (min-width: 1024px) {
  .legal__title {
    font-size: 3.8rem;
  }
}
.legal__last-updated {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 40px;
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section:last-child {
  margin-bottom: 0;
}
.legal__section-title {
  font-size: 2rem;
  color: #00bfff;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 69, 0, 0.5);
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 2.2rem;
  }
}
.legal__subsection {
  margin-bottom: 25px;
}
.legal__subsection:last-child {
  margin-bottom: 0;
}
.legal__subsection-title {
  font-size: 1.5rem;
  color: #33ccff;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .legal__subsection-title {
    font-size: 1.7rem;
  }
}
.legal__paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #f8f8f8;
}
@media (min-width: 768px) {
  .legal__paragraph {
    font-size: 1.05rem;
  }
}
.legal__list {
  margin-left: 20px;
  margin-bottom: 15px;
}
.legal__list-item {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #f8f8f8;
}
.legal__list-item:last-child {
  margin-bottom: 0;
}
.legal__link {
  color: #ff4500;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.legal__link:hover {
  color: #ff6a33;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(10, 10, 10, 0.95);
  color: #f8f8f8;
  padding: 20px 0;
  z-index: 2000;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner__text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}
.cookie-banner__text p {
  margin: 0;
}
.cookie-banner__text a {
  color: #ff4500;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #ff6a33;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-banner__actions {
    justify-content: flex-end;
  }
}
.cookie-banner__button {
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  border: none;
}
.cookie-banner__button--accept {
  background-color: #ff4500;
  color: #f8f8f8;
}
.cookie-banner__button--accept:hover {
  background-color: #cc3700;
}
.cookie-banner__button--decline {
  background-color: #00bfff;
  color: #f8f8f8;
}
.cookie-banner__button--decline:hover {
  background-color: #0099cc;
}