.policy,
.success,
.contact-section {
  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__link {
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zilla Slab", serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
.header {
  background: #8b5a5a;
  color: white;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

.header__logo a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
}

.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav__link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav__link:hover {
  opacity: 0.8;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

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

.burger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  background: #8b5a5a;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav__list {
  list-style: none;
  padding: 20px;
}

.mobile-nav__list li {
  margin-bottom: 15px;
}

.mobile-nav__link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  padding: 10px 0;
}

/* Hero Section */
.hero {
  background: #8b5a5a;
  color: white;
  padding: 120px 0 80px;
  margin-top: 69px;
}

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

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

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

.hero__subdescription {
  font-size: 16px;
  line-height: 1.6;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image {
  max-width: 100%;
  height: auto;
}

/* Shift Your Perspective Section */
.shift-perspective {
  padding: 80px 0;
  background: white;
}

.shift-perspective__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shift-perspective__title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
}

.shift-perspective__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.shift-perspective__visual {
  display: flex;
  justify-content: center;
}

.shift-perspective__image {
  max-width: 100%;
  height: auto;
}

/* Why Choose Section */
.why-choose {
  background: #ffb8c6;
  padding: 80px 0;
}

.why-choose__title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 50px;
}

.why-choose__benefits {
  margin-bottom: 60px;
}

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

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit__title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.benefit__description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.benefits__visual {
  display: flex;
  justify-content: center;
}

.benefits__image {
  max-width: 100%;
  height: auto;
}

/* Services Section */
.services {
  background: white;
  padding: 0 0 80px;
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  background: #f8f8f8;
  margin-bottom: 1px;
  transition: background-color 0.3s ease;
}

.service-item:hover {
  background: #f0f0f0;
}

.service-item__image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 20px;
}

.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item__content {
  flex: 1;
}

.service-item__title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.service-item__description {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.service-item__arrow {
  font-size: 24px;
  color: #666;
  text-decoration: none;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.service-item__arrow:hover {
  color: #333;
}

/* Contact Section */
.contact {
  background: #ffb8c6;
  padding: 80px 0;
}

.contact__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact__title {
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.contact__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact__subdescription {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.form__group {
  position: relative;
}

.form__input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-family: "Zilla Slab", serif;
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 0.3s ease;
}

.form__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.form__input::placeholder {
  color: #999;
}

.form__submit {
  background: #ff6b8a;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Zilla Slab", serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form__submit:hover {
  background: #ff5a7a;
}

.form__submit-icon {
  font-size: 18px;
}

/* Footer */
.footer {
  background: #8b5a5a;
  color: white;
  padding: 40px 0;
}

.footer__content {
  text-align: center;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer__social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer__link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 0.8;
}

.footer__copyright {
  font-size: 14px;
  opacity: 0.8;
}

/* Cookie Popup */
.cookie-popup {
  display: none !important;
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: #ffb8c6;
  border-radius: 15px;
  padding: 30px;
  z-index: 1001;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 500px;
  margin: 0 auto;
}

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

.cookie-popup__title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cookie-popup__description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-popup__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-popup__btn {
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Zilla Slab", serif;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.cookie-popup__btn--accept {
  background: #333;
  color: white;
}

.cookie-popup__btn--accept:hover {
  background: #555;
}

.cookie-popup__btn--settings {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.cookie-popup__btn--settings:hover {
  background: #333;
  color: white;
}

.cookie-popup__btn--policy {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.cookie-popup__btn--policy:hover {
  background: #333;
  color: white;
}

/* Success Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.success-popup.show {
  opacity: 1;
  visibility: visible;
}

.success-popup__content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  margin: 0 20px;
}

.success-popup__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.success-popup__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}

.success-popup__btn {
  background: #ff6b8a;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Zilla Slab", serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.success-popup__btn:hover {
  background: #ff5a7a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .burger {
    display: flex;
  }

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

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

  .hero__title {
    font-size: 36px;
  }

  .shift-perspective {
    padding: 60px 0;
  }

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

  .shift-perspective__title {
    font-size: 28px;
  }

  .why-choose {
    padding: 60px 0;
  }

  .why-choose__title {
    font-size: 28px;
    text-align: center;
  }

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

  .services {
    padding: 0 0 60px;
  }

  .service-item {
    grid-template-columns: 60px 1fr 40px;
    gap: 25px;
    padding: 20px 0;
  }

  .service-item__image {
    width: 60px;
    height: 60px;
    margin-left: 15px;
  }

  .service-item__title {
    font-size: 18px;
  }

  .service-item__description {
    font-size: 13px;
  }

  .service-item__arrow {
    font-size: 20px;
    margin-right: 15px;
  }

  .contact {
    padding: 60px 0;
  }

  .contact__title {
    font-size: 28px;
  }

  .footer__links {
    gap: 20px;
  }

  .footer__link {
    font-size: 13px;
  }

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

  .cookie-popup__title {
    font-size: 18px;
  }

  .cookie-popup__actions {
    flex-direction: column;
    gap: 8px;
  }

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

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

  .hero__title {
    font-size: 28px;
  }

  .shift-perspective__title,
  .why-choose__title,
  .contact__title {
    font-size: 24px;
  }

  .service-item {
    grid-template-columns: 50px 1fr 30px;
    gap: 12px;
    padding: 15px 0;
  }

  .service-item__image {
    width: 50px;
    height: 50px;
    margin-left: 10px;
  }

  .service-item__title {
    font-size: 16px;
  }

  .service-item__description {
    font-size: 12px;
  }

  .service-item__arrow {
    font-size: 18px;
    margin-right: 10px;
  }

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

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