/* Основные стили для сайта domain.com */

/* Сброс и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #4A4A6A;
  background-color: #FFFFFF;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Глобальные правила для предотвращения горизонтального скролла */
img, video, iframe, embed, object {
  max-width: 100%;
  height: auto;
}

table {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
}

pre, code {
  overflow-x: auto;
  word-wrap: break-word;
}

/* Цветовая палитра */
:root {
  --primary: #6B2C91;
  --accent: #FF6B9D;
  --highlight: #FFB84D;
  --dark: #1A1B3A;
  --light: #E8D5F2;
  --white: #FFFFFF;
  --text: #4A4A6A;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 50%, #FFB84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 184, 77, 0.5);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--primary);
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Контейнеры */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* Анимации */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
  }
  50% {
    box-shadow: 0 5px 30px rgba(255, 107, 157, 0.6);
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

/* Шапка */
header {
  background: linear-gradient(135deg, #1A1B3A 0%, #6B2C91 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Мобильное меню (checkbox hack) */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: all 0.3s ease;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: color 0.3s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 100%);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--highlight);
}

/* Hero секция */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 44, 145, 0.9) 0%, rgba(255, 107, 157, 0.8) 50%, rgba(255, 184, 77, 0.7) 100%),
              url('./img/OUfcS7.jpg') center/cover no-repeat;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(26, 27, 58, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: slideUp 1s ease-out;
}

.hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(255, 184, 77, 0.8);
}

.hero p {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--white);
}

/* Кнопки */
.btn {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.125rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
  animation: glow 2s infinite;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Карточки */
.card {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6B2C91 0%, #FF6B9D 50%, #FFB84D 100%);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(107, 44, 145, 0.3);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Секция о компании */
.about-section {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

/* Преимущества */
.benefits-section {
  background: var(--white);
}

.benefit-card {
  text-align: center;
  padding: 2rem;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Гороскопы */
.horoscopes-section {
  background: linear-gradient(135deg, #1A1B3A 0%, #6B2C91 100%);
  color: var(--white);
}

.horoscopes-section h2 {
  color: var(--white);
  text-align: center;
}

.horoscope-card {
  background: linear-gradient(180deg, rgba(232, 213, 242, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 107, 157, 0.3);
  color: var(--white);
}

.horoscope-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.horoscope-card h3 {
  color: var(--highlight);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--highlight);
  margin: 1rem 0;
}

/* Как это работает */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Отзывы */
.testimonials-section {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-left: 5px solid var(--accent);
}

.stars {
  color: var(--highlight);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-item {
  margin-bottom: 1rem;
  border: 2px solid var(--light);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
  transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item[open] summary {
  background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 100%);
  color: var(--white);
}

.faq-item p {
  padding: 1.5rem;
  background: var(--white);
  margin: 0;
}

/* Форма заказа */
.form-section {
  background: linear-gradient(135deg, #1A1B3A 0%, #6B2C91 100%);
  color: var(--white);
  padding: 100px 0;
}

.form-section h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(232, 213, 242, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 107, 157, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: visible;
  z-index: 1;
}

.order-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 184, 77, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
}

.form-group select option {
  color: black;
  background-color: white;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  min-width: 20px;
  height: 20px;
  margin-top: 5px;
  cursor: pointer !important;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  pointer-events: auto !important;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer !important;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
  user-select: none;
}

.checkbox-group a {
  color: var(--highlight);
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: var(--accent);
}

.order-form button[type="submit"],
.order-form .btn {
  position: relative;
  z-index: 100;
  width: 100%;
  margin-top: 1rem;
  pointer-events: auto !important;
  cursor: pointer !important;
  display: block;
}

/* Блок контактов */
.contact-section {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info-card {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 3px solid var(--light);
  box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.contact-info-card h3 {
  color: var(--primary);
  margin-bottom: 2rem;
  text-align: left;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p {
  margin: 0;
  color: var(--text);
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Футер */
footer {
  background: linear-gradient(135deg, #1A1B3A 0%, #6B2C91 100%);
  color: var(--white);
  padding: 3rem 0 1rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-section h3 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--highlight);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: linear-gradient(135deg, #6B2C91 0%, #FF6B9D 100%);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-popup a {
  color: var(--highlight);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--white);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background: var(--highlight);
  color: var(--white);
}

/* Страницы политики */
.policy-page {
  min-height: 100vh;
  padding: 100px 20px;
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  border: 3px solid var(--light);
  box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
}

.policy-container h1 {
  color: var(--primary);
  margin-bottom: 2rem;
  -webkit-text-fill-color: var(--primary);
}

.policy-container h2 {
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-container p,
.policy-container ul {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-container ul {
  padding-left: 2rem;
}

.policy-container li {
  margin-bottom: 0.5rem;
}

.contact-info {
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 2px solid var(--light);
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.back-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 12px 30px;
  background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

/* Дополнительные страницы */
.content-page {
  min-height: 100vh;
  padding: 100px 20px;
  background: linear-gradient(180deg, #E8D5F2 0%, #FFFFFF 100%);
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  border: 3px solid var(--light);
  box-shadow: 0 10px 30px rgba(107, 44, 145, 0.2);
  text-align: center;
}

.content-block h1 {
  color: var(--primary);
  margin-bottom: 2rem;
  -webkit-text-fill-color: var(--primary);
  text-align: center;
}

.content-block p,
.content-block ul {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: left;
}

.content-block ul {
  display: inline-block;
  text-align: left;
}

/* Адаптивность */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
  }

  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  img, video, iframe, embed, object {
    max-width: 100% !important;
    height: auto !important;
  }

  .container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .section {
    padding: 60px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  header {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  footer {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-icon {
    display: flex;
  }

  nav {
    position: relative;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 70px);
    background: linear-gradient(135deg, #1A1B3A 0%, #6B2C91 100%);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  .header-content {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  #menu-toggle:checked ~ nav ul {
    left: 0;
  }

  .card-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 1.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .order-form {
    padding: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .cookie-popup {
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    box-sizing: border-box !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }

  .contact-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact-image {
    min-height: 300px;
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-card {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 2rem !important;
  }

  .hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .policy-container,
  .content-block {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.5rem !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .process-steps {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  * {
    max-width: 100% !important;
  }

  .hero {
    min-height: 80vh;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .order-form {
    padding: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .policy-container,
  .content-block {
    padding: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .container {
    padding: 0 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .section {
    padding: 40px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .card {
    padding: 1.5rem !important;
  }

  .contact-info-card {
    padding: 1.5rem !important;
  }
}

/* Декоративные элементы */
.star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--highlight);
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #FF6B9D 50%, transparent 100%);
  margin: 3rem 0;
  border-radius: 2px;
}

