:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.about-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.about-container {
    position: relative;
    z-index: 2;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(252, 60%, 72%);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 25px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(252, 60%, 72%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-image-secondary {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(252, 60%, 72%), hsl(252, 60%, 47%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: hsl(252, 60%, 72%);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.value-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: hsl(252, 60%, 72%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    color: hsl(252, 60%, 32%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

@media (max-width: 768px) {
    .zigzag-left, .zigzag-right {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.floating-balloons {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60px;
    height: 80px;
    opacity: 0.1;
    animation: balloonFloat 6s ease-in-out infinite;
}

@keyframes balloonFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(252, 60%, 72%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    counter-reset: number;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(252, 60%, 72%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.privacy-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #2c3e50;
    border-left: 5px solid #667eea;
    padding-left: 20px;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 3px;
}

.privacy-content {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: justify;
    color: #444;
}

.highlight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    color: white;
    font-weight: 500;
}

.data-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #667eea;
}

.data-list ul {
    margin: 0;
    padding-left: 25px;
}

.data-list li {
    margin: 10px 0;
    font-size: 1.05rem;
    color: #555;
}

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

.rights-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.rights-card h4 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 30px 20px;
    }
    
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.cookies-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.policy-header p {
    font-size: 1.2rem;
    margin: 15px 0 0 0;
    opacity: 0.9;
}

.policy-section {
    background: white;
    margin: 30px 0;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
}

.section-title {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "🍪";
    margin-right: 10px;
    font-size: 1.5rem;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.cookie-type {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e3f2fd;
}

.cookie-type h4 {
    color: #1565c0;
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff9800;
    margin: 25px 0;
}

.consent-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #4caf50;
    margin: 25px 0;
}

.policy-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

ul {
    padding-left: 25px;
}

li {
    margin: 10px 0;
    font-size: 1.05rem;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
    font-style: italic;
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.contact-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-info {
    color: white;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(252, 60%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.consultation-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: hsl(252, 60%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-right: 15px;
    flex-shrink: 0;
}

.working-hours {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.working-hours h4 {
    color: hsl(252, 60%, 72%);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
}

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

.form-label {
    font-weight: 600;
    color: hsl(252, 60%, 32%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: hsl(252, 60%, 47%);
    background: white;
    box-shadow: 0 0 0 3px rgba(129, 95, 206, 0.1);
}

.form-control:valid {
    border-color: #28a745;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 32%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(129, 95, 206, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.about-container {
    position: relative;
    z-index: 2;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(252, 60%, 72%);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 25px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(252, 60%, 72%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-image-secondary {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(252, 60%, 72%), hsl(252, 60%, 47%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: hsl(252, 60%, 72%);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.value-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.services-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(252, 60%, 72%);
    border-color: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 60%, 72%, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(252, 60%, 72%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    color: hsl(252, 60%, 32%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(252, 60%, 47%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(252, 60%, 97%);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid hsl(252, 60%, 72%);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="1.5" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(252, 60%, 47%);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    color: hsl(252, 60%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🎈';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(252, 60%, 72%);
    border-radius: 15px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: hsl(252, 60%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(252, 60%, 47%);
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(252, 60%, 60%);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 87, 194, 0.4);
    background: linear-gradient(135deg, hsl(252, 60%, 52%) 0%, hsl(252, 60%, 37%) 100%);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(252, 60%, 50%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(252, 60%, 72%);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(252, 60%, 72%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.client-info {
    border-top: 2px solid hsl(252, 60%, 90%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.terms-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.terms-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 1.5rem;
    color: #34495e;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #e74c3c;
    font-weight: 600;
}

.terms-text {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
}

.list-item {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.list-item:before {
    content: "▸";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #ecf0f1;
    font-size: 0.95rem;
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.faq-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.8" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(252, 60%, 32%);
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(252, 60%, 47%, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(252, 60%, 47%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.highlight-text {
    color: hsl(252, 60%, 47%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 25px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.about-container {
    position: relative;
    z-index: 2;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(252, 60%, 72%);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 25px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(252, 60%, 72%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-image-secondary {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(252, 60%, 72%), hsl(252, 60%, 47%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: hsl(252, 60%, 72%);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.value-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="1.5" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(252, 60%, 47%);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    color: hsl(252, 60%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🎈';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(252, 60%, 72%);
    border-radius: 15px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: hsl(252, 60%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(252, 60%, 47%);
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(252, 60%, 60%);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 87, 194, 0.4);
    background: linear-gradient(135deg, hsl(252, 60%, 52%) 0%, hsl(252, 60%, 37%) 100%);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(252, 60%, 50%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}

:root {
            --primary-color: hsl(252, 60%, 47%);
            --secondary-color: hsl(252, 60%, 32%);
            --accent-color: hsl(252, 60%, 72%);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        
        .navbar {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--accent-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            border-radius: 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.25);
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="2.5" fill="rgba(255,255,255,0.12)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: 
        "title image"
        "description image"
        "benefits cta";
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    grid-area: title;
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 0;
}

.hero-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-image {
    grid-area: image;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

.hero-description {
    grid-area: description;
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-benefits {
    grid-area: benefits;
    color: white;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: slideInLeft 0.6s ease forwards;
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }
.benefits-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-list i {
    color: hsl(252, 60%, 72%);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.hero-cta {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.cta-primary {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-primary:hover {
    background: white;
    color: hsl(252, 60%, 47%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid hsl(252, 60%, 72%);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "title"
            "image"
            "description"
            "benefits"
            "cta";
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .hero-image img {
        height: 300px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.06)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(252, 60%, 72%);
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotate(10deg);
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    counter-reset: number;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(252, 60%, 72%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: hsl(252, 60%, 72%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.advantage-icon i {
    font-size: 2rem;
    color: white;
}

.advantage-title {
    color: hsl(252, 60%, 32%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.zigzag-left {
    padding-right: 3rem;
}

.zigzag-right {
    padding-left: 3rem;
}

@media (max-width: 768px) {
    .zigzag-left, .zigzag-right {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        padding: 2rem;
    }
}

.floating-balloons {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 60px;
    height: 80px;
    opacity: 0.1;
    animation: balloonFloat 6s ease-in-out infinite;
}

@keyframes balloonFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.faq-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.8" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    pointer-events: none;
}

.faq-container {
    position: relative;
    z-index: 2;
}

.faq-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(252, 60%, 32%);
    border-radius: 15px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(252, 60%, 47%, 0.25);
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(252, 60%, 47%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    color: white;
    transform: rotate(0deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

.highlight-text {
    color: hsl(252, 60%, 47%);
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .accordion-button {
        padding: 20px 25px;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 25px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    color: hsl(252, 60%, 72%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(252, 60%, 72%);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: hsl(252, 60%, 72%);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    opacity: 0.3;
}

.client-info {
    border-top: 2px solid hsl(252, 60%, 90%);
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

.about-container {
    position: relative;
    z-index: 2;
}

.about-hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-bottom: 60px;
    transition: transform 0.3s ease;
}

.about-hero-image:hover {
    transform: scale(1.02);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.3rem;
    color: hsl(252, 60%, 72%);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.story-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 25px;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: hsl(252, 60%, 72%);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 60px 0;
}

.about-image-secondary {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mission-highlight {
    background: linear-gradient(45deg, hsl(252, 60%, 72%), hsl(252, 60%, 47%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: hsl(252, 60%, 72%);
}

.value-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.value-description {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .two-column-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-card {
        padding: 25px;
    }
    
    .about-hero-image {
        height: 250px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.contact-container {
    position: relative;
    z-index: 2;
}

.contact-info {
    color: white;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(252, 60%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.consultation-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: hsl(252, 60%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-right: 15px;
    flex-shrink: 0;
}

.working-hours {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.working-hours h4 {
    color: hsl(252, 60%, 72%);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
}

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

.form-label {
    font-weight: 600;
    color: hsl(252, 60%, 32%);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: hsl(252, 60%, 47%);
    background: white;
    box-shadow: 0 0 0 3px rgba(129, 95, 206, 0.1);
}

.form-control:valid {
    border-color: #28a745;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 32%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(129, 95, 206, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="3" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="80" r="2.5" fill="rgba(255,255,255,0.12)"/><circle cx="30" cy="70" r="1.5" fill="rgba(255,255,255,0.09)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(252, 60%, 32%);
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: hsl(252, 60%, 47%);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 12px 0;
    color: hsl(252, 60%, 32%);
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.benefits-list li::before {
    content: '🎈';
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
}

.newsletter-form {
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid hsl(252, 60%, 72%);
    border-radius: 15px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: hsl(252, 60%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(252, 60%, 47%);
    box-shadow: 0 0 0 3px rgba(126, 87, 194, 0.2);
    background: white;
}

.form-control::placeholder {
    color: hsl(252, 60%, 60%);
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(126, 87, 194, 0.4);
    background: linear-gradient(135deg, hsl(252, 60%, 52%) 0%, hsl(252, 60%, 37%) 100%);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(252, 60%, 50%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 600;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(252, 60%, 72%);
    border-color: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 60%, 72%, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: hsl(252, 60%, 72%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(252, 60%, 47%), hsl(252, 60%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-title {
    color: hsl(252, 60%, 32%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(252, 60%, 47%);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(252, 60%, 97%);
    border-radius: 10px;
    padding: 15px;
    font-size: 0.9rem;
    color: #555;
    border-left: 4px solid hsl(252, 60%, 72%);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

.footer-bg {
    background: linear-gradient(135deg, hsl(252, 60%, 32%) 0%, hsl(252, 60%, 47%) 100%);
    color: white;
}

.footer-link {
    color: hsl(252, 60%, 72%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(252, 60%, 47%) 0%, hsl(252, 60%, 32%) 100%);
    color: white;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-btn {
    background: hsl(252, 60%, 72%);
    border: none;
    color: hsl(252, 60%, 32%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: white;
    color: hsl(252, 60%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(252, 60%, 72%);
    color: hsl(252, 60%, 72%);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-outline:hover {
    background: hsl(252, 60%, 72%);
    color: hsl(252, 60%, 32%);
}

.footer-section h5 {
    color: hsl(252, 60%, 72%);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: hsl(252, 60%, 72%);
}