* {
  box-sizing: border-box;
}

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;
}

body {
  font-family: "Rubik", sans-serif;
  color: #f5f5f5;
  background-color: #1b1e25;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.header {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 1.2rem 0;
  font-family: "Rubik", sans-serif;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header__logo {
  font-family: "Bangers", cursive;
  font-size: 2rem;
  color: #ffcc00;
  text-decoration: none;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}
.header__logo:hover {
  transform: scale(1.05);
}
.header nav {
  flex: 1;
  margin-left: 2rem;
}
.header nav .header__menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header nav .header__menu-item {
  position: relative;
}
.header nav .header__menu-link {
  text-decoration: none;
  color: #f5f5f5;
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.3s;
}
.header nav .header__menu-link:hover {
  color: #ffcc00;
}
.header__btn {
  background: #ffcc00;
  color: #1b1e25;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.header__btn:hover {
  background: #cca300;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .header nav {
    margin: 1rem 0;
  }
  .header .header__menu {
    flex-direction: column;
    gap: 0.75rem;
  }
  .header__btn {
    align-self: stretch;
    width: 100%;
    text-align: center;
  }
}
.hero {
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f5f5;
  padding: 6rem 0;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero__label {
  display: inline-block;
  background-color: #ffcc00;
  color: #1b1e25;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Bangers", cursive;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 1rem;
  }
}
.hero__btn {
  background: #ffcc00;
  color: #1b1e25;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.hero__btn:hover {
  background: #cca300;
  transform: translateY(-2px);
}

.about {
  background-color: #ffffff;
  color: #1b1e25;
  padding: 5rem 0;
}
.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about__wrapper {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .about__wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .about__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.about__img {
  flex: 1 1 45%;
  max-width: 500px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991px) {
  .about__img {
    flex: 1 1 50%;
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .about__img {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
.about__content {
  flex: 1 1 50%;
  font-family: "Rubik", sans-serif;
  text-align: left;
}
@media (max-width: 768px) {
  .about__content {
    flex: 1 1 100%;
    text-align: center;
  }
}
.about__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0055ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.about__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Bangers", cursive;
  color: #1b1e25;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .about__title {
    font-size: 1.5rem;
  }
}
.about__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #9fa6b2;
}
@media (max-width: 768px) {
  .about__description {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about__description {
    font-size: 0.95rem;
  }
}
.about__btn {
  background: #ffcc00;
  color: #1b1e25;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.about__btn:hover {
  background: #cca300;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .about__btn {
    padding: 0.65rem 1.3rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .about__btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

.services {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 5rem 0;
  text-align: center;
}
.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.services__title {
  font-size: 2.5rem;
  font-family: "Bangers", cursive;
  margin-bottom: 3rem;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .services__title {
    font-size: 1.75rem;
  }
}
.services__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .services__list {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .services__list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
}
.services__item {
  background-color: #ffffff;
  color: #1b1e25;
  border-radius: 12px;
  overflow: hidden;
  flex: 1 1 30%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .services__item {
    max-width: 45%;
    flex: 1 1 45%;
  }
}
@media (max-width: 767px) {
  .services__item {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
.services__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 480px) {
  .services__item-img {
    height: 150px;
  }
}
.services__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 1rem 0.5rem;
  font-family: "Rubik", sans-serif;
}
@media (max-width: 480px) {
  .services__item-title {
    font-size: 1.25rem;
  }
}
.services__item-description {
  font-size: 1rem;
  color: #9fa6b2;
  padding: 0 1.5rem 1.5rem;
  flex-grow: 1;
}
@media (max-width: 480px) {
  .services__item-description {
    font-size: 0.9rem;
    padding: 0 1rem 1.5rem;
  }
}
.services__item-btn {
  background: #ffcc00;
  color: #1b1e25;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.services__item-btn:hover {
  background: #cca300;
  transform: scale(1.05);
}
@media (max-width: 480px) {
  .services__item-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

.how-it-works {
  background: url("../img/how-it-works-bg.jpg") center/cover no-repeat;
  color: #f5f5f5;
  padding: 6rem 0;
  position: relative;
}
.how-it-works .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.how-it-works__wrapper {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .how-it-works__wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
.how-it-works__content {
  flex: 1 1 45%;
  font-family: "Rubik", sans-serif;
}
.how-it-works__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.how-it-works__title {
  font-size: 2.5rem;
  font-family: "Bangers", cursive;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .how-it-works__title {
    font-size: 2rem;
  }
}
.how-it-works__description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 500px;
}
@media (max-width: 768px) {
  .how-it-works__description {
    max-width: 100%;
  }
}
.how-it-works__steps {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  color: #ffcc00;
  font-weight: 600;
  list-style: none;
  padding: 0;
}
@media (max-width: 768px) {
  .how-it-works__steps {
    font-size: 1rem;
  }
}
.how-it-works__step {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  color: #f5f5f5;
  transition: background 0.3s;
}
.how-it-works__step:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.testimonials {
  background-color: #ffffff;
  color: #1b1e25;
  text-align: center;
  padding: 5rem 1rem;
}
.testimonials__label {
  font-size: 0.9rem;
  color: #ffcc00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.testimonials__title {
  font-size: 2.5rem;
  font-family: "Bangers", cursive;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .testimonials__title {
    font-size: 1.75rem;
  }
}
.testimonials__list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .testimonials__list {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .testimonials__list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.testimonials__item {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  max-width: 320px;
  flex: 1 1 30%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonials__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .testimonials__item {
    max-width: 45%;
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .testimonials__item {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
.testimonials__quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .testimonials__quote {
    font-size: 1rem;
  }
}
.testimonials__author {
  font-weight: 600;
  color: #ffcc00;
  font-size: 0.95rem;
  display: block;
}
@media (max-width: 480px) {
  .testimonials__author {
    font-size: 0.9rem;
  }
}

.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta-bg.jpg") center/cover no-repeat;
  padding: 5rem 1rem;
  text-align: center;
  color: #f5f5f5;
}
.cta .container {
  max-width: 1000px;
  margin: 0 auto;
}
.cta__label {
  font-size: 0.9rem;
  color: #ffcc00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.cta__title {
  font-family: "Bangers", cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 2rem;
  }
}
.cta__description {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f5f5f5;
}
@media (max-width: 768px) {
  .cta__description {
    font-size: 1rem;
  }
}
.cta__btn {
  background-color: #ffcc00;
  color: #1b1e25;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  transition: background-color 0.3s;
}
.cta__btn:hover {
  background-color: #cca300;
  color: #1b1e25;
}

.footer {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 3rem 1rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.9rem;
}
.footer .container {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer__content {
  max-width: 400px;
}
.footer__content > .footer__logo {
  font-family: "Bangers", cursive;
  font-size: 1.8rem;
  color: #ffcc00;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.footer__content > .footer__description {
  color: #9fa6b2;
  line-height: 1.5;
  font-size: 1rem;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links .footer__link {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer__links .footer__link:hover {
  color: #ffcc00;
}
.footer__copy {
  text-align: center;
  color: #9fa6b2;
  font-size: 0.8rem;
  border-top: 1px solid #313642;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .footer__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__links {
    justify-content: flex-start;
    gap: 1rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 1rem 2rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}
.cookie-banner__message {
  max-width: 70%;
}
.cookie-banner__btn {
  background-color: #ffcc00;
  color: #1b1e25;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}
.cookie-banner__btn:hover {
  background-color: #cca300;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
  }
  .cookie-banner__message {
    max-width: 100%;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}

.about-company {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 4rem 1rem;
  font-family: "Rubik", sans-serif;
}
.about-company .container {
  max-width: 1100px;
  margin: 0 auto;
}
.about-company__label {
  display: inline-block;
  font-weight: 700;
  color: #ffcc00;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.about-company__title {
  font-family: "Bangers", cursive;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  color: #0055ff;
}
.about-company__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #9fa6b2;
}
.about-company__img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .about-company__wrapper {
    flex-direction: row;
    gap: 3rem;
    max-width: none;
    color: #f5f5f5;
  }
  .about-company__description {
    flex: 1;
  }
  .about-company__img {
    flex: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 4rem 1rem;
  font-family: "Rubik", sans-serif;
}
.contact .container {
  max-width: 1100px;
  margin: 0 auto;
}
.contact__label {
  display: inline-block;
  color: #ffcc00;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.contact__title {
  font-family: "Bangers", cursive;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #0055ff;
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contact__info {
  list-style: none;
  padding: 0;
  flex: 1;
}
.contact__info-item {
  margin-bottom: 1.5rem;
}
.contact__info-title {
  color: #ffcc00;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  display: block;
}
.contact__info-text {
  color: #9fa6b2;
  font-size: 1rem;
}
.contact__form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 6px;
  background-color: #262a34;
  color: #f5f5f5;
  font-size: 1rem;
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder {
  color: #9fa6b2;
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: #9fa6b2;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffcc00;
}
.contact__form-textarea {
  min-height: 140px;
  resize: vertical;
}
.contact__form-btn {
  align-self: flex-start;
  background-color: #ffcc00;
  color: #1b1e25;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.contact__form-btn:hover {
  background-color: #cca300;
}
.contact__form-status {
  font-size: 0.9rem;
  color: #9fa6b2;
  margin-top: 0.5rem;
}

.thank-you {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1b1e25;
  color: #f5f5f5;
}
.thank-you__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}
.thank-you__text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #9fa6b2;
}
.thank-you__btn {
  background: #0055ff;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.thank-you__btn:hover {
  background: #cca300;
}

.legal {
  background-color: #1b1e25;
  color: #f5f5f5;
  padding: 60px 0;
  font-family: "Rubik", sans-serif;
}
.legal__title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffcc00;
  text-align: center;
}
.legal__subtitle {
  font-size: 1.75rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #0055ff;
}
.legal__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f5f5f5;
}
.legal__text a.legal__link {
  color: #ffcc00;
  text-decoration: underline;
}
.legal__text a.legal__link:hover {
  color: #cca300;
}
.legal__list {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 20px;
}
.legal__list li {
  margin-bottom: 10px;
  color: #f5f5f5;
}