body {
  font-family: "Goldman", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
}

.header__logo {
  transition: transform 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__logo img {
  width: 50px;
  height: auto;
  transition: all 0.3s ease;
}

.nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav__list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  transition: width 0.3s ease;
}

.nav__list a:hover {
  color: #007bff;
}

.nav__list a:hover::after {
  width: 100%;
}

.wrapper {
  padding-top: 80px;
}

.main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.background_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.main__title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.main__text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.section {
  padding: 80px 0;
}

.title_section {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.block2__wrap {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 60px 20px;
}

.block2__title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.block2__text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.block3 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.flex__wrap2 {
  flex: 1;
  min-width: 300px;
}

.block3__img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.block4__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.block4__block {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.block4__block_img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.block4__block_text {
  padding: 20px;
}

.block4__block_text span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.block4__block_link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin: 20px;
  transition: background-color 0.3s;
}

.block4__block_link:hover {
  background-color: #0056b3;
}

.block6 {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.block6 .flex {
  margin-bottom: 40px;
}

.block6 .flex__wrap2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.block6 .flex__wrap2 p {
  padding: 20px;
}

.block6 .flex__wrap2 span {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form__title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #007bff;
  outline: none;
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__button {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form__button:hover {
  background-color: #0056b3;
}

.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00bfff);
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer__links_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo img {
  width: 60px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer__logo img:hover {
  transform: scale(1.1);
}

.links_footer ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.links_footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.links_footer a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: width 0.3s ease;
}

.links_footer a:hover::after {
  width: 100%;
}

.footer__contact {
  text-align: center;
}

.footer__contact p {
  margin: 10px 0;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.6;
}

.footer__contact p:first-child {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer__bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }

  .footer__links_footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .links_footer ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer__contact p {
    font-size: 0.9rem;
  }
}

.mobile-nav-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-icon {
  font-size: 24px;
  color: #333;
  transition: transform 0.3s ease;
}

.mobile-nav-btn.active .nav-icon {
  transform: rotate(90deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  transition: left 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 999;
  padding-top: 80px;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

.mobile-nav__list li {
  width: 100%;
  text-align: center;
}

.mobile-nav__list a {
  text-decoration: none;
  color: #333;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  display: block;
  width: 100%;
}

.mobile-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff, #00bfff);
  transition: width 0.3s ease;
}

.mobile-nav__list a:hover::after {
  width: 50%;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-nav-btn {
    display: block;
  }

  .header__container {
    padding: 10px 15px;
  }

  .header__logo img {
    width: 40px;
  }

  .mobile-nav {
    display: block;
  }
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  display: none;
}

.cookie__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie__buttons {
  display: flex;
  gap: 10px;
}

.cookie__button_agree {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cookie__button_policy {
  padding: 10px 20px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  text-decoration: none;
}

.btn_to_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #333;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
}

.btn_to_top::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 8px;
}

.btn_to_top:hover {
  background-color: #555;
  transform: translateY(-5px);
}

.btn_to_top.active {
  display: flex;
}

.button_util {
  display: inline-block;
  padding: 15px 40px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.button_util:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.button_util:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.button_util::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.button_util:hover::after {
  transform: translateX(100%);
}

@media (max-width: 768px) {
  .button_util {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
