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

.success__text {
  margin-bottom: 27px;
}


.policy__title,
.success__title {
  font-weight: 700;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 28px;
}


.policy__text h2 {
  text-align: left;
  font-size: 22px;
}

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

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

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

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

/* 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;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.section-title--center {
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn--primary {
  background: #e74c3c;
  color: white;
}

.btn--primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn--secondary {
  background: #ecf0f1;
  color: #2c3e50;
}

.btn--secondary:hover {
  background: #d5dbdb;
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* 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: 1rem 0;
  border-bottom: 1px solid #ecf0f1;
}

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

.nav__logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
}

.nav__menu {
  display: flex;
  gap: 2rem;
}

.nav__menu a {
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.nav__menu a:hover {
  color: #e74c3c;
}

.nav__burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__burger span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("../img/hero-bg-main.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero__title--accent {
  color: #e74c3c;
}

.hero__description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #ecf0f1;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8f9fa;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.about__mission {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.about__stats {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  font-weight: 700;
  color: #27ae60;
}

.stat__label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.stat__label--pink {
  background: #ffe6e6;
  color: #e74c3c;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.85rem;
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: 15px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Services Section */
.services {
  padding: 6rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
  border-radius: 50%;
}

.service-card__icon img {
  width: 40px;
  height: 40px;
}

.service-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

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

/* Stylists Section */
.stylists {
  padding: 6rem 0;
  background: #f8f9fa;
}

.stylists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stylist-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stylist-card__image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.stylist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stylist-card__name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.stylist-card__position {
  color: #e74c3c;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stylist-card__description {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name {
  font-weight: 600;
  color: #2c3e50;
}

.review-card__text {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

/* Contact Form Section */
.contact-form {
  padding: 6rem 0;
  background: #f8f9fa;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__group {
  margin-bottom: 1rem;
}

.form__input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #ecf0f1;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form__input:focus {
  outline: none;
  border-color: #e74c3c;
}

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

.form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__description {
  color: #bdc3c7;
  line-height: 1.6;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__list a {
  color: #bdc3c7;
  transition: color 0.3s ease;
}

.footer__list a:hover {
  color: #e74c3c;
}

.footer__list--legal {
  margin-top: 1rem;
}

.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  color: #bdc3c7;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}

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

.cookie-popup__content {
  padding: 2rem;
}

.cookie-popup__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.cookie-popup__text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-popup__text a {
  color: #e74c3c;
  text-decoration: underline;
}

.cookie-popup__buttons {
  display: flex;
  gap: 1rem;
}

.cookie-popup__buttons .btn {
  flex: 1;
  padding: 12px 20px;
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__burger {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__description {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

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

  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

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

  .hero__title {
    font-size: 2rem;
  }

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

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

  .about__stats {
    flex-direction: column;
    gap: 1rem;
  }
}
