/* Reset and Base Styles */
* {
    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: #374151;
    background-color: #FEF3C7;
    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;
}

/* Color Variables */
:root {
    --primary: #6B46C1;
    --secondary: #EC4899;
    --accent: #F59E0B;
    --dark: #1E1B4B;
    --light: #E9D5FF;
    --background: #FEF3C7;
    --white: #FFFFFF;
    --text: #374151;
}

/* 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 4px 20px rgba(107, 70, 193, 0.3);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    background: linear-gradient(135deg, #EC4899 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 5px rgba(236, 72, 153, 0.5));
    }
    to {
        filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.8));
    }
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    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(90deg, var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle:checked ~ .main-nav {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked ~ .mobile-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 767px) {
    .mobile-menu-icon {
        display: flex;
        order: 2;
    }
    
    .main-nav {
        display: none;
        order: 3;
    }
    
    .header-content {
        position: relative;
    }
    
    .mobile-menu-toggle:checked ~ .main-nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        margin-top: 15px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #6B46C1 0%, #EC4899 50%, #F59E0B 100%);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./img/MS4alG.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(32px, 8vw, 64px);
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #E9D5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(18px, 4vw, 24px);
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #EC4899 0%, #6B46C1 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Stars Animation */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    animation: twinkle 3s infinite;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.8);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
}

.service-card img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: clamp(22px, 4vw, 26px);
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-select:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
    color: var(--white);
}

/* Benefits Section */
.benefits-section {
    background: var(--dark);
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-item h4 {
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 15px;
    color: var(--accent);
}

/* How It Works Section */
.how-section {
    background: var(--white);
}

.steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.step h4 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 15px;
    color: var(--primary);
}

.step-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--primary);
}

.step:last-child .step-arrow {
    display: none;
}

@media (max-width: 767px) {
    .step-arrow {
        display: none;
    }
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.review-stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.review-author {
    font-weight: bold;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--light);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.faq-item summary {
    padding: 20px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(236, 72, 153, 0.1));
    cursor: pointer;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 18px);
    color: var(--primary);
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.2), rgba(236, 72, 153, 0.2));
}

.faq-item p {
    padding: 20px;
    line-height: 1.8;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: starMove 20s linear infinite;
    pointer-events: none;
}

@keyframes starMove {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: fadeInUp 1s ease-out;
    box-sizing: border-box;
}

.order-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    z-index: -1;
    opacity: 0.5;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--white);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
    color: #000000;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-group span {
    color: #000000;
}

.checkbox-group a {
    color: #000000;
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.5);
}

/* Contact Section */
.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.contact-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.5);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-info-box p {
    margin-bottom: 20px;
    font-size: clamp(16px, 3vw, 18px);
}

.contact-info-box a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-link {
    color: var(--accent);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: var(--secondary);
}

.cookie-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
}

/* Policy Pages */
.policy-page {
    min-height: 100vh;
    padding: 100px 20px 80px;
    background: var(--background);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
}

.policy-container h1 {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-container h2 {
    font-size: clamp(22px, 4vw, 26px);
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.policy-container p,
.policy-container ul {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-container ul {
    padding-left: 30px;
}

.policy-container li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}

/* Thank You Page */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content {
    max-width: 600px;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    animation: fadeInUp 1s ease-out;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.thank-you-content h1 {
    font-size: clamp(32px, 6vw, 48px);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-content p {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Extra Pages (About, Blog, Tips) */
.content-page {
    min-height: 100vh;
    padding: 100px 20px 80px;
    background: var(--background);
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.2);
    animation: fadeInUp 1s ease-out;
}

.content-block h1 {
    font-size: clamp(28px, 6vw, 36px);
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-block p {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .order-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .contact-image {
        order: 1;
    }
    
    .contact-info-box {
        order: 2;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .main-nav {
        width: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-container,
    .content-block {
        padding: 30px 15px;
    }
    
    .order-form {
        padding: 25px 15px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 30px 10px;
    }
    
    .contact-content {
        padding: 0 5px;
    }
    
    .contact-info-box {
        padding: 30px 20px;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        position: relative;
    }
}

