.policy,
.success {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  text-align: center;
}

.btn--primary {
  background: linear-gradient(135deg, #ffb800 0%, #ff8f00 100%);
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #ffb800;
  border: 2px solid #ffb800;
}

.btn--secondary:hover {
  background: #ffb800;
  color: #000;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  text-decoration: none;
}

.nav__logo-img {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav__link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #6366f1;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav__toggle-line {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  color: white;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero__description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.8;
}

.hero__image {
  position: relative;
}

.hero__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Section Headers */
.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__title {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.section__cta {
  text-align: center;
  margin-top: 60px;
}

/* Advantages Section */
.advantages {
  padding: 100px 0;
  background: #f8fafc;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.advantage {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.advantage:hover {
  transform: translateY(-5px);
}

.advantage__number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #6366f1;
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.advantage__number--pink {
  background: #ec4899;
}

.advantage__number--orange {
  background: #f59e0b;
}

.advantage__number--blue {
  background: #3b82f6;
}

.advantage__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.advantage__description {
  color: #666;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
}

.about__description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.about__image {
  position: relative;
}

.about__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8fafc;
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service__icon {
  margin-bottom: 20px;
}

.service__icon-img {
  width: 48px;
  height: 48px;
}

.service__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #6366f1;
}

.service__description {
  color: #666;
  line-height: 1.6;
}

.services__img {
  width: 270px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

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

@media (min-width: 1200px) {
  .services__content {
    flex-direction: row;
  }
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 100%);
  color: white;
  padding: 100px 0;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__title {
  color: white;
  margin-bottom: 20px;
}

.contact__subtitle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact__description {
  margin-bottom: 30px;
  opacity: 0.8;
}

.contact__info {
  margin-bottom: 40px;
}

.contact__address {
  opacity: 0.9;
  line-height: 1.6;
}

/* Form Styles */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  position: relative;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.form__textarea {
  border-radius: 20px;
  resize: vertical;
  min-height: 120px;
}

.form__input:focus,
.form__textarea:focus {
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.3);
}

.contact__image {
  position: relative;
}

.contact__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: white;
  padding: 40px 0 20px;
  border-top: 1px solid #e5e7eb;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer__logo {
  font-weight: 700;
  font-size: 24px;
  color: #1a1a1a;
  text-decoration: none;
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer__link {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #6366f1;
}

.footer__bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.footer__copyright {
  color: #999;
  font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #1a1a1a;
  color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-popup__content {
  text-align: center;
}

.cookie-popup__icon {
  margin-bottom: 20px;
}

.cookie-popup__icon-img {
  width: 60px;
  height: 60px;
}

.cookie-popup__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cookie-popup__text {
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.cookie-popup__buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-popup__btn {
  flex: 1;
  min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    gap: 20px;
  }

  .nav__menu.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__title {
    font-size: 36px;
  }

  .section__title {
    font-size: 32px;
  }

  .advantages__grid {
    grid-template-columns: 1fr;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__image {
    display: none;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .cookie-popup {
    left: 10px;
    right: 10px;
    padding: 20px;
  }

  .cookie-popup__buttons {
    flex-direction: column;
  }

  .cookie-popup__btn {
    min-width: auto;
  }
}

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

  .hero {
    padding: 100px 0 60px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 20px;
  }

  .section__title {
    font-size: 28px;
  }

  .advantage {
    padding: 30px 20px;
  }

  .service {
    padding: 30px 20px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title,
.hero__subtitle,
.hero__description {
  animation: fadeInUp 0.6s ease forwards;
}

.hero__subtitle {
  animation-delay: 0.2s;
}

.hero__description {
  animation-delay: 0.4s;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

.show {
  display: block;
}
