/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

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;
    background-color: #0A0E27;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Общий стиль для всех ссылок */
a {
    color: #FFFFFF;
}

a:hover {
    color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 107, 157, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #FF6B9D;
    text-decoration: none;
    background: linear-gradient(135deg, #F8B500 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #FF6B9D;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: #FFFFFF;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0A0E27 0%, #1A1A2E 50%, #16213E 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/PkfN20.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 64px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B9D 0%, #F8B500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #E0E0E0;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #F8B500 0%, #FF6B9D 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.5);
    animation: pulse 2s infinite;
}

.btn-secondary {
    background: rgba(255, 107, 157, 0.2);
    border: 2px solid #FF6B9D;
}

.btn-secondary:hover {
    background: rgba(255, 107, 157, 0.4);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 50px;
    color: #FF6B9D;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* About Section */
.about {
    background: rgba(26, 26, 46, 0.5);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2), 0 0 20px rgba(248, 181, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.about-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4), 0 0 30px rgba(248, 181, 0, 0.2);
    border-color: rgba(255, 107, 157, 0.6);
}

.about-item h3 {
    color: #F8B500;
    margin-bottom: 15px;
    font-size: 24px;
}

.about-item p {
    color: #E0E0E0;
    line-height: 1.8;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2), 0 0 20px rgba(248, 181, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3,
.service-card p,
.service-card .service-price,
.service-card .btn {
    padding: 0 30px;
}

.service-card h3 {
    margin-top: 25px;
}

.service-card .btn {
    margin: 25px 30px 30px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:nth-child(1) {
    border-color: rgba(255, 107, 157, 0.5);
}

.service-card:nth-child(2) {
    border-color: rgba(108, 92, 231, 0.5);
}

.service-card:nth-child(3) {
    border-color: rgba(248, 181, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.4), 0 0 40px rgba(248, 181, 0, 0.3);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #FF6B9D;
}

.service-card:nth-child(2) h3 {
    color: #6C5CE7;
}

.service-card:nth-child(3) h3 {
    color: #F8B500;
}

.service-card p {
    color: #E0E0E0;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #F8B500;
    margin: 20px 30px;
}

/* How It Works Section */
.how-it-works {
    background: rgba(26, 26, 46, 0.5);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C44569 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    color: #FFFFFF;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
}

.step h3 {
    color: #FF6B9D;
    margin-bottom: 15px;
}

.step p {
    color: #E0E0E0;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-item:hover {
    transform: scale(1.05);
    border-color: rgba(255, 107, 157, 0.6);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #F8B500;
}

.benefit-item h3 {
    color: #FF6B9D;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #E0E0E0;
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 26, 46, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
}

.stars {
    color: #F8B500;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial p {
    color: #E0E0E0;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    color: #FF6B9D;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 157, 0.6);
}

.faq-item summary {
    padding: 20px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #FF6B9D;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: #FF8CAB;
    background: rgba(255, 107, 157, 0.1);
}

.faq-item p {
    padding: 0 30px 20px;
    color: #E0E0E0;
    line-height: 1.8;
}

/* Form Section */
.order-form-section {
    background: rgba(26, 26, 46, 0.5);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 3px solid;
    border-image: linear-gradient(135deg, #FF6B9D 0%, #F8B500 100%) 1;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3), 0 0 40px rgba(248, 181, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FF6B9D;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 107, 157, 0.5);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.form-group 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='%23FF6B9D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #E0E0E0;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #FF6B9D;
}

.checkbox-group a {
    color: #FFFFFF;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #FFFFFF;
}

.form-submit {
    width: 100%;
    padding: 18px;
    margin-top: 20px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-info-box {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.contact-wrapper .contact-item {
    text-align: left;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: none;
}

.contact-wrapper .contact-item:hover {
    transform: none;
    box-shadow: none;
}

.contact-wrapper .contact-item h3 {
    color: #F8B500;
    margin-bottom: 10px;
    font-size: 20px;
}

.contact-wrapper .contact-item p,
.contact-wrapper .contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
}

.contact-wrapper .contact-item a:hover {
    color: #FFFFFF;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 107, 157, 0.4);
}

.contact-item h3 {
    color: #F8B500;
    margin-bottom: 15px;
    font-size: 24px;
}

.contact-item p,
.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
}

.contact-item a:hover {
    color: #FFFFFF;
}

/* Footer */
.main-footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(255, 107, 157, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FF6B9D;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    color: #E0E0E0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 157, 0.2);
    color: #E0E0E0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 3px solid #FF6B9D;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #E0E0E0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #FFFFFF;
    text-decoration: underline;
}

.btn-accept {
    padding: 12px 30px;
    background: linear-gradient(135deg, #F8B500 0%, #FF6B9D 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

/* Policy Pages */
.policy-page {
    padding: 60px 20px;
    min-height: 70vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.policy-container h1 {
    color: #FF6B9D;
    margin-bottom: 30px;
    font-size: 36px;
}

.policy-container h2 {
    color: #F8B500;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
}

.policy-container p {
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-container ul {
    color: #E0E0E0;
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container a {
    color: #FFFFFF;
    text-decoration: underline;
}

.policy-container a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.contact-info-box {
    background: rgba(255, 107, 157, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.contact-info-box h3 {
    color: #FF6B9D;
    margin-bottom: 15px;
}

.contact-info-box p {
    margin-bottom: 8px;
}

/* Single Content Pages */
.single-content-page {
    padding: 80px 20px;
    min-height: 70vh;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 10px 40px rgba(255, 107, 157, 0.2);
}

.thank-you-content {
    text-align: center;
}

.thank-you-content h1 {
    text-align: center;
    margin-bottom: 25px;
}

.thank-you-content p {
    text-align: center;
    margin-bottom: 20px;
}

.thank-you-content ul {
    text-align: left;
    display: inline-block;
    color: #E0E0E0;
    margin: 20px auto;
    padding-left: 0;
    list-style: none;
}

.thank-you-content ul li {
    margin-bottom: 10px;
    text-align: left;
}

.thank-you-content ul li a {
    color: #FFFFFF;
    text-decoration: none;
}

.thank-you-content ul li a:hover {
    color: #FFFFFF;
}

.thank-you-button {
    margin-top: 30px;
    text-align: center;
}

.content-block h1 {
    color: #FF6B9D;
    margin-bottom: 30px;
    font-size: 36px;
}

.content-block p {
    color: #E0E0E0;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 18px;
}

/* Animations */
@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: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 2px solid rgba(255, 107, 157, 0.3);
    }

    .menu-toggle:checked ~ .main-nav {
        transform: translateX(0);
    }

    .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);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .policy-container,
    .content-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }

    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

