:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(15deg);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(323, 47%, 26%);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
}

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

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid hsl(323, 47%, 90%);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(323, 47%, 26%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 4px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(323, 47%, 35%);
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(323, 47%, 41%) 0%, transparent 50%);
    opacity: 0.2;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image {
    transform: scale(1.05);
}

.highlight-text {
    color: hsl(323, 47%, 41%);
    font-weight: 600;
    position: relative;
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid hsl(323, 47%, 66%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    animation: shine 1s ease-in-out;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .decorative-element {
        display: none;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(323, 47%, 66%, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    color: hsl(323, 47%, 26%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(323, 47%, 41%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(189, 70, 134, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(189, 70, 134, 0.2);
    border-color: hsl(323, 47%, 66%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(189, 70, 134, 0.3);
}

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

.advantage-title {
    color: hsl(323, 47%, 26%);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: hsl(323, 47%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    padding: 80px 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.stats-counter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stats-counter::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;
}

.stats-counter:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

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

.stats-icon {
    font-size: 3rem;
    color: hsl(323, 47%, 66%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stats-counter:hover .stats-icon {
    transform: scale(1.2) rotate(10deg);
    color: #fff;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 2.5rem;
    }
    
    .stats-counter {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.privacy-policy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #fff5f5 0%, #ffeaa7 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    font-size: 2.8rem;
    color: #d63031;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #fdcb6e;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    font-size: 1.8rem;
    color: #e17055;
    margin: 35px 0 20px 0;
    padding: 15px 20px;
    background: rgba(255,255,255,0.7);
    border-left: 5px solid #fdcb6e;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.privacy-policy h3 {
    font-size: 1.4rem;
    color: #6c5ce7;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    padding: 0 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
    padding: 15px;
}

.privacy-policy ul {
    background: rgba(255,255,255,0.6);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.privacy-policy li {
    margin-bottom: 12px;
    padding-left: 10px;
    border-left: 3px solid #fdcb6e;
    background: rgba(255,255,255,0.4);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 8px;
}

.privacy-policy strong {
    color: #d63031;
    font-weight: 700;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #636e72;
    background: rgba(255,255,255,0.8);
    padding: 15px;
    border-radius: 25px;
    margin: 30px 0;
    border: 2px dashed #fdcb6e;
}

.highlight-box {
    background: linear-gradient(45deg, #ff7675, #fd79a8);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.cookies-policy {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #fff8f0 0%, #ffeee6 100%);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.policy-header h1 {
    font-size: 2.5em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

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

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

.section h2 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h2::before {
    content: "🍰";
    font-size: 0.8em;
}

.section h3 {
    color: #CD853F;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    border-bottom: 2px solid #F4A460;
    padding-bottom: 8px;
}

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

.cookie-type {
    background: #fef7f0;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #F4A460;
}

.cookie-type h4 {
    color: #8B4513;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.consent-box {
    background: linear-gradient(135deg, #fff3e0, #ffe0b3);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #D2691E;
    margin: 20px 0;
}

.highlight {
    background: #fff8dc;
    padding: 15px;
    border-left: 4px solid #DAA520;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.controls-list {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.controls-list ul {
    margin: 0;
    padding-left: 20px;
}

.controls-list li {
    margin: 8px 0;
}

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

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 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 infinite linear;
}

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

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

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

.section-subtitle {
    color: hsl(323, 47%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.form-label {
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(323, 47%, 80%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(323, 47%, 26%);
}

.form-control:focus {
    border-color: hsl(323, 47%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(186, 85, 139, 0.25);
    outline: none;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(186, 85, 139, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(186, 85, 139, 0.4);
    background: linear-gradient(135deg, hsl(323, 47%, 46%) 0%, hsl(323, 47%, 31%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: hsl(323, 47%, 90%);
    line-height: 1.6;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    color: hsl(323, 47%, 90%);
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(15deg);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(323, 47%, 26%);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
}

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

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid hsl(323, 47%, 90%);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(323, 47%, 26%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 4px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(323, 47%, 35%);
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(323, 47%, 41%) 0%, transparent 50%);
    opacity: 0.2;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image {
    transform: scale(1.05);
}

.highlight-text {
    color: hsl(323, 47%, 41%);
    font-weight: 600;
    position: relative;
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid hsl(323, 47%, 66%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    animation: shine 1s ease-in-out;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .decorative-element {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: hsl(323, 47%, 26%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(323, 47%, 41%);
    border-radius: 2px;
}

.services-header p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(323, 47%, 66%);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(323, 47%, 41%);
    color: white;
    border: none;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(323, 47%, 66%);
}

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

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

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

.service-title {
    color: hsl(323, 47%, 26%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(323, 47%, 41%), hsl(323, 47%, 66%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid hsl(323, 47%, 41%);
}

.service-conditions h6 {
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

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

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(323, 47%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(323, 47%, 85%);
    font-size: 0.9rem;
    line-height: 1.4;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(323, 47%, 66%);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: hsl(323, 47%, 41%);
    opacity: 0.7;
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, hsl(323, 47%, 41%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(323, 47%, 76%) 0%, hsl(323, 47%, 51%) 100%);
}

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

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

.privacy-text {
    color: hsl(323, 47%, 80%);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .subscribe-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

.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;
}

.testimonials-scroll {
    height: 500px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 40s linear infinite;
    padding: 100px 0;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(323, 47%, 66%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.author-info h5 {
    margin: 0;
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
        min-height: 160px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f4e6 0%, #faf7f0 100%);
}

.terms-title {
    text-align: center;
    color: #8b4513;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.1);
    border-bottom: 3px solid #d4a574;
    padding-bottom: 15px;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.7);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d4a574;
}

.section-title {
    color: #8b4513;
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.highlight {
    background: linear-gradient(120deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-weight: 500;
}

.terms-list {
    padding-left: 25px;
    margin: 15px 0;
}

.terms-list li {
    margin-bottom: 10px;
    position: relative;
}

.terms-list li::marker {
    color: #8b4513;
    font-weight: bold;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(108, 117, 125, 0.1);
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 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="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); }
}

.faq-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);
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(323, 47%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%), hsl(323, 47%, 66%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(323, 47%, 66%);
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-question {
    color: hsl(323, 47%, 26%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.faq-question::before {
    content: '🍰';
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 45px;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        margin-left: 35px;
    }
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(15deg);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(323, 47%, 26%);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
}

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

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid hsl(323, 47%, 90%);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(323, 47%, 26%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 4px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(323, 47%, 35%);
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(323, 47%, 41%) 0%, transparent 50%);
    opacity: 0.2;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image {
    transform: scale(1.05);
}

.highlight-text {
    color: hsl(323, 47%, 41%);
    font-weight: 600;
    position: relative;
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid hsl(323, 47%, 66%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    animation: shine 1s ease-in-out;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .decorative-element {
        display: none;
    }
}

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(323, 47%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(323, 47%, 85%);
    font-size: 0.9rem;
    line-height: 1.4;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(323, 47%, 66%);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: hsl(323, 47%, 41%);
    opacity: 0.7;
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, hsl(323, 47%, 41%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(323, 47%, 76%) 0%, hsl(323, 47%, 51%) 100%);
}

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

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

.privacy-text {
    color: hsl(323, 47%, 80%);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .subscribe-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}

:root {
            --primary-color: hsl(323, 47%, 41%);
            --secondary-color: hsl(323, 47%, 26%);
            --accent-color: hsl(323, 47%, 66%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-container img {
            border-radius: 50%;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .logo-container img:hover {
            transform: rotate(360deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255,255,255,0.95);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                padding: 10px 0;
                border-bottom: 1px solid rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(323, 47%, 90%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features i {
    color: hsl(323, 47%, 66%);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
}

.cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(323, 47%, 66%);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(323, 47%, 56%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    padding: 10px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(323, 47%, 66%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(323, 47%, 66%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 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="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); }
}

.faq-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);
    position: relative;
    z-index: 2;
}

.faq-subtitle {
    color: hsl(323, 47%, 85%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%), hsl(323, 47%, 66%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(323, 47%, 66%);
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-question {
    color: hsl(323, 47%, 26%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.faq-question::before {
    content: '🍰';
    font-size: 1.8rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-answer {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 45px;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 1rem;
        margin-left: 35px;
    }
}

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

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

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-title {
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.newsletter-subtitle {
    color: hsl(323, 47%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: hsl(323, 47%, 85%);
    font-size: 0.9rem;
    line-height: 1.4;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: hsl(323, 47%, 66%);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: scale(1.02);
}

.email-input::placeholder {
    color: hsl(323, 47%, 41%);
    opacity: 0.7;
}

.subscribe-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, hsl(323, 47%, 41%) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    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.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(323, 47%, 76%) 0%, hsl(323, 47%, 51%) 100%);
}

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

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

.privacy-text {
    color: hsl(323, 47%, 80%);
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .subscribe-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 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 infinite linear;
}

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

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

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

.section-subtitle {
    color: hsl(323, 47%, 90%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.form-label {
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    border: 2px solid hsl(323, 47%, 80%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(323, 47%, 26%);
}

.form-control:focus {
    border-color: hsl(323, 47%, 41%);
    box-shadow: 0 0 0 0.2rem rgba(186, 85, 139, 0.25);
    outline: none;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(186, 85, 139, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(186, 85, 139, 0.4);
    background: linear-gradient(135deg, hsl(323, 47%, 46%) 0%, hsl(323, 47%, 31%) 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.info-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-text {
    color: hsl(323, 47%, 90%);
    line-height: 1.6;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.hours-title {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    color: hsl(323, 47%, 90%);
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, hsl(323, 47%, 66%, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    color: hsl(323, 47%, 26%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(323, 47%, 41%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(189, 70, 134, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(189, 70, 134, 0.2);
    border-color: hsl(323, 47%, 66%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.advantage-card:hover .advantage-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(189, 70, 134, 0.3);
}

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

.advantage-title {
    color: hsl(323, 47%, 26%);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: hsl(323, 47%, 35%);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.5rem;
    }
}

.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: hsl(323, 47%, 26%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(323, 47%, 41%);
    border-radius: 2px;
}

.services-header p {
    color: #6c757d;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(323, 47%, 66%);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(323, 47%, 41%);
    color: white;
    border: none;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(323, 47%, 66%);
}

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

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

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

.service-title {
    color: hsl(323, 47%, 26%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(323, 47%, 41%), hsl(323, 47%, 66%));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-top: auto;
}

.service-conditions {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border-left: 4px solid hsl(323, 47%, 41%);
}

.service-conditions h6 {
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.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="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

.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;
}

.testimonials-scroll {
    height: 500px;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scrollUp 40s linear infinite;
    padding: 100px 0;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(323, 47%, 66%);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.author-info h5 {
    margin: 0;
    color: hsl(323, 47%, 26%);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffd700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonials-scroll {
        height: 400px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
        min-height: 160px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    padding: 80px 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.stats-counter {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stats-counter::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;
}

.stats-counter:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

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

.stats-icon {
    font-size: 3rem;
    color: hsl(323, 47%, 66%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.stats-counter:hover .stats-icon {
    transform: scale(1.2) rotate(10deg);
    color: #fff;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stats-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-icon {
        font-size: 2.5rem;
    }
    
    .stats-counter {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, hsl(323, 47%, 66%) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(15deg);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(323, 47%, 26%);
    margin-bottom: 2rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
}

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

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid hsl(323, 47%, 90%);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(323, 47%, 26%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 30px;
    background: linear-gradient(180deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 66%) 100%);
    border-radius: 4px;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: hsl(323, 47%, 35%);
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(323, 47%, 41%) 0%, transparent 50%);
    opacity: 0.2;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image {
    transform: scale(1.05);
}

.highlight-text {
    color: hsl(323, 47%, 41%);
    font-weight: 600;
    position: relative;
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid hsl(323, 47%, 66%);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.decorative-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.decorative-element:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    animation: shine 1s ease-in-out;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-image {
        height: 250px;
    }
    
    .decorative-element {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(323, 47%, 26%) 0%, hsl(323, 47%, 41%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(323, 47%, 66%);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: hsl(323, 47%, 66%);
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
}

footer a:hover {
    color: hsl(323, 47%, 66%);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(323, 47%, 41%) 0%, hsl(323, 47%, 26%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-notice p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(323, 47%, 66%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: hsl(323, 47%, 76%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-outline {
    background: transparent;
    border: 2px solid hsl(323, 47%, 66%);
    color: hsl(323, 47%, 66%);
}

.cookie-btn-outline:hover {
    background: hsl(323, 47%, 66%);
    color: white;
}

@media (max-width: 768px) {
    .cookie-notice .container {
        text-align: center;
    }
    
    .cookie-btn {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 0.8rem;
    }
}