/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1C1C1E;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1C1C1E;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #1C1C1E;
}

a {
    color: #1EA8A5;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #22C55E;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 168, 165, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 168, 165, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #1C1C1E;
    border: 2px solid #1C1C1E;
}

.btn-secondary:hover {
    background: #1C1C1E;
    color: #FAF3E0;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 30, 0.95);
    color: #FAF3E0;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    color: #FAF3E0;
}

.cookie-btn {
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 168, 165, 0.4);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1EA8A5;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #1C1C1E;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1EA8A5;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 20px;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 50%, #7C3AED 100%);
    color: white;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #FAF3E0;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    flex: 1;
    animation: fadeInRight 1s ease 0.6s both;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    color: #1EA8A5;
    margin-bottom: 2rem;
}

.about-features {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #1EA8A5;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
}

.services .section-title,
.services .section-subtitle {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: #1EA8A5;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1C1C1E;
    margin: 20px 0;
}

.price {
    color: #22C55E;
}

/* Why Us Section */
.why-us {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 168, 165, 0.2);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.advantage-item h3 {
    color: #1EA8A5;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #7C3AED 0%, #1EA8A5 100%);
    color: white;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #FAF3E0;
    font-style: italic;
}

.testimonial-author strong {
    color: #FFD93D;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #FAF3E0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    color: white;
    padding: 20px 30px;
    margin: 0;
    cursor: pointer;
}

.faq-item p {
    padding: 20px 30px;
    margin: 0;
    border-top: 1px solid #f0f0f0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: white;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item strong {
    color: #1C1C1E;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #1C1C1E;
    margin: 0;
}

.contact-item a {
    color: #1C1C1E;
}

.contact-item a:hover {
    color: #1EA8A5;
}

.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #1C1C1E;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #1C1C1E;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1EA8A5;
    box-shadow: 0 0 0 3px rgba(30, 168, 165, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #1C1C1E;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.error-message {
    background: #ff4757;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1C1C1E;
    color: #FAF3E0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD93D;
    margin-bottom: 2rem;
}

.footer-section p {
    color: #FAF3E0;
    margin-bottom: 1rem;
}

.legal-links,
.services-links {
    list-style: none;
}

.legal-links li,
.services-links li {
    margin-bottom: 10px;
}

.legal-links a {
    color: #FAF3E0;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #FFD93D;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    margin: 5px 0;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Policy Pages */
.policy-page {
    padding: 100px 0 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-height: 80vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.policy-content h1 {
    color: #1EA8A5;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    color: #1EA8A5;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: #22C55E;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-size: 1.3rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section .contact-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.policy-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.policy-actions .btn {
    margin: 0 10px;
}

/* Thank You Page */
.thank-you-page {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF6B6B 100%);
    min-height: 90vh;
}

.thank-you-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 2rem;
    animation: bounceIn 1s ease;
}

.thank-you-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.thank-you-message {
    font-size: 1.3rem;
    color: #FAF3E0;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.5s both;
}

.next-steps {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.7s both;
}

.next-steps h2 {
    color: #1EA8A5;
    margin-bottom: 2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1EA8A5 0%, #22C55E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
    color: #1EA8A5;
    margin-bottom: 1rem;
}

.contact-reminder {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.9s both;
}

.contact-reminder h2 {
    color: #1EA8A5;
    margin-bottom: 2rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-detail {
    text-align: center;
    padding: 1rem;
}

.contact-detail strong {
    color: #1EA8A5;
    display: block;
    margin-bottom: 0.5rem;
}

.additional-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 1.1s both;
}

.additional-info h2 {
    color: #1EA8A5;
    margin-bottom: 2rem;
}

.info-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-link {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #1C1C1E;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-link:hover {
    transform: translateY(-5px);
    color: #1C1C1E;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-link strong {
    color: #1EA8A5;
    display: block;
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    margin: 3rem 0;
    animation: fadeInUp 1s ease 1.3s both;
}

.thank-you-actions .btn {
    margin: 0 10px;
}

.urgency-note {
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid rgba(124, 58, 237, 0.3);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 1.5s both;
}

.urgency-note p {
    margin: 0.5rem 0;
    color: #1C1C1E;
}

.urgency-note strong {
    color: #7C3AED;
}

.urgency-note a {
    color: #7C3AED;
    font-weight: 600;
}

.urgency-note a:hover {
    color: #1EA8A5;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
        margin: 0 -15px;
        border-radius: 15px 15px 0 0;
    }
    
    .contact-form-container h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
        border: 2px solid #e0e0e0;
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: #1EA8A5;
        box-shadow: 0 0 0 3px rgba(30, 168, 165, 0.1);
        outline: none;
    }
    
    .checkbox-group {
        margin: 8px 0;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }
    
    .checkbox-label {
        font-size: 0.9rem;
        line-height: 1.5;
        align-items: flex-start;
        gap: 12px;
    }
    
    .checkbox-label input[type="checkbox"] {
        transform: scale(1.4);
        margin-top: 4px;
        min-width: 18px;
    }
    
    .btn-large {
        padding: 16px 20px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 12px;
        width: 100%;
        margin-top: 10px;
    }
    
    .contact-info {
        order: 2;
        background: rgba(255, 255, 255, 0.8);
        padding: 20px 15px;
        margin: 20px -15px 0;
        border-radius: 15px;
    }
    
    .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: #1C1C1E;
    }
    
    .contact-details {
        gap: 15px;
        display: flex;
        flex-direction: column;
    }
    
    .contact-item {
        padding: 12px 15px;
        background: white;
        border-radius: 10px;
        text-align: left;
        border-left: 4px solid #1EA8A5;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .contact-item strong {
        font-size: 0.9rem;
        margin-bottom: 4px;
        color: #1EA8A5;
    }
    
    .contact-item p {
        font-size: 0.95rem;
        margin: 0;
        color: #1C1C1E;
    }
    
    .contact-item a {
        color: #1EA8A5;
        font-weight: 600;
        text-decoration: none;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .error-message {
        margin: 0 -15px 20px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #1C1C1E;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .header-cta {
        display: none;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo svg {
        width: 40px;
        height: 32px;
    }
    
    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .next-steps,
    .contact-reminder,
    .additional-info {
        padding: 2rem 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-links {
        grid-template-columns: 1fr;
    }
    
    .policy-actions .btn,
    .thank-you-actions .btn {
        display: block;
        margin: 10px 0;
        width: 100%;
    }
} 