/* ============================================
   ОСНОВНЫЕ СТИЛИ И СБРОС
   ============================================ */

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

:root {
    --primary: #6B2C91;
    --secondary: #D4AF37;
    --dark: #1A1F3A;
    --light: #87CEEB;
    --white: #FFFFFF;
    --soft: #E6D5F5;
    --accent: #FF6B35;
    --metallic: #C0C0C0;
    --text: #2C2C2C;
    --gradient-hero-start: #4A148C;
    --gradient-hero-end: #7B1FA2;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   HEADER И НАВИГАЦИЯ
   ============================================ */

.main-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: transform 0.3s ease;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--white) !important;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* ============================================
   HERO СЕКЦИЯ
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--gradient-hero-start) 0%, var(--gradient-hero-end) 50%, var(--dark) 100%);
    overflow: hidden;
    overflow-x: hidden;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/goeSv1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--soft);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 15px 40px;
    background: radial-gradient(circle, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
}

/* Декоративные звезды удалены */

/* ============================================
   ОБЩИЕ СЕКЦИИ
   ============================================ */

section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-title {
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.section-subtitle {
    font-size: 20px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

/* ============================================
   СЕКЦИЯ О НАС
   ============================================ */

.about-section {
    background-color: var(--soft);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    position: relative;
}

.about-content::before,
.about-content::after {
    content: '★';
    position: absolute;
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.about-content::before {
    top: -30px;
    left: -50px;
}

.about-content::after {
    bottom: -30px;
    right: -50px;
    animation-delay: 2s;
}

/* ============================================
   СЕКЦИЯ УСЛУГ (3 КАРТОЧКИ)
   ============================================ */

.services-section {
    background-color: var(--white);
}

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

.service-card {
    background: linear-gradient(135deg, var(--soft) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.service-card::before {
    content: '✦';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: var(--secondary);
    opacity: 0.3;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(107, 44, 145, 0.3);
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    color: var(--secondary);
    font-weight: bold;
    margin-top: 15px;
}

/* ============================================
   СЕКЦИЯ КАК ЭТО РАБОТАЕТ
   ============================================ */

.how-it-works-section {
    background-color: var(--white);
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding: 0 30px;
    background: var(--soft);
    padding: 20px;
    border-radius: 10px;
    margin: 0 20px;
}

.step-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-description {
    color: var(--text);
}

/* ============================================
   СЕКЦИЯ ПРЕИМУЩЕСТВ
   ============================================ */

.benefits-section {
    background: linear-gradient(135deg, var(--light) 0%, rgba(135, 206, 235, 0.5) 100%);
}

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

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
}

.benefit-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.benefit-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

/* ============================================
   СЕКЦИЯ ОТЗЫВОВ
   ============================================ */

.testimonials-section {
    background-color: var(--soft);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--primary);
}

.testimonial-rating {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 10px;
}

/* ============================================
   СЕКЦИЯ FAQ
   ============================================ */

.faq-section {
    background-color: var(--white);
}

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

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--soft);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item summary {
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 2px solid var(--soft);
}

.faq-answer {
    padding: 20px;
    color: var(--text);
    line-height: 1.8;
    background-color: var(--soft);
}

/* ============================================
   ФОРМА ЗАКАЗА (УНИКАЛЬНЫЙ ДИЗАЙН)
   ============================================ */

.order-form-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.order-form-section::before {
    content: '✦ ✧ ★ ☆ ✦ ✧';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 40px;
    color: var(--secondary);
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.order-form-section .section-title {
    color: var(--white);
}

.order-form-section .section-title::after {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.form-container::before,
.form-container::after {
    content: '✦';
    position: absolute;
    font-size: 50px;
    color: var(--secondary);
    opacity: 0.2;
}

.form-container::before {
    top: -20px;
    left: -20px;
}

.form-container::after {
    bottom: -20px;
    right: -20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: bold;
    font-size: 16px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--soft);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: var(--white);
    color: var(--text);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B2C91' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 10px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--secondary);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--secondary);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: radial-gradient(circle, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.7);
    animation: pulse 1s infinite;
}

/* ============================================
   СЕКЦИЯ КОНТАКТОВ
   ============================================ */

.contact-section {
    background-color: var(--dark);
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-item {
    margin-bottom: 25px;
    font-size: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-item strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary);
}

/* Декоративные планеты */
.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.contact-section::before {
    top: 20%;
    left: 10%;
}

.contact-section::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@media (max-width: 768px) {
    .contact-section::before,
    .contact-section::after {
        display: none;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 50px 0 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

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

.footer-section h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-section p strong {
    color: var(--white);
}

.footer-section a {
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--soft);
}

/* ============================================
   COOKIE POPUP
   ============================================ */

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 31, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-popup.show {
    display: block;
}

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

.cookie-content p {
    color: var(--white);
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--secondary);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   СТРАНИЦЫ ПОЛИТИКИ
   ============================================ */

.policy-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--soft);
}

.policy-container h2 {
    color: var(--dark);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-container p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-container li {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ СТРАНИЦЫ
   ============================================ */

.content-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.content-block h1 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 30px;
}

.content-block p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   АНИМАЦИИ
   ============================================ */

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto;
    }
    
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .main-header {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .main-header .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        justify-content: center !important;
    }
    
    /* Скрываем мобильное меню */
    .menu-toggle,
    .menu-icon,
    .main-nav {
        display: none !important;
    }
    
    /* Центрируем логотип */
    .logo {
        margin: 0 auto;
        text-align: center;
    }
    
    .main-footer {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: hidden !important;
    }
    
    .main-footer .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Скрываем декоративные элементы с отрицательными отступами */
    .about-content::before,
    .about-content::after {
        display: none !important;
    }
    
    .contact-section::before,
    .contact-section::after {
        display: none !important;
    }
    
    .order-form-section::before {
        display: none !important;
    }
    
    .form-container::before,
    .form-container::after {
        display: none !important;
    }
    
    .contact-info {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .contact-map {
        height: 300px;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Дополнительные правила для предотвращения горизонтального скролла */
    .hero-content,
    .about-content,
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .faq-container,
    .steps-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .service-card,
    .benefit-item,
    .testimonial-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .step-item {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .step-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        margin: 20px 0 0 0;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-container,
    .content-block {
        padding: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
}

