:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(326, 57%, 56%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(326, 57%, 56%);
    margin-bottom: 1.5rem;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: hsl(326, 57%, 56%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.highlight-text {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-left: 4px solid hsl(326, 57%, 56%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.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); }
}

.advantages-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.advantages-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: hsl(326, 57%, 56%);
    margin: 20px auto;
    border-radius: 2px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(326, 57%, 56%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(326, 57%, 31%), hsl(326, 57%, 16%));
}

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

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(326, 57%, 16%);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(326, 57%, 56%);
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(326, 57%, 56%) 0deg, hsl(326, 57%, 56%) var(--percentage), rgba(255,255,255,0.2) var(--percentage), rgba(255,255,255,0.2) 360deg);
    animation: rotate 2s ease-in-out;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-inner {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: hsl(326, 57%, 31%);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(326, 57%, 31%);
    line-height: 1;
}

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

.stat-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    color: #27ae60;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-policy .subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-style: italic;
}

.privacy-policy h2 {
    color: #2980b9;
    font-size: 1.8rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #27ae60;
    position: relative;
}

.privacy-policy h2::before {
    content: '🌿';
    margin-right: 10px;
    font-size: 1.5rem;
}

.privacy-policy h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

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

.privacy-policy li {
    margin-bottom: 12px;
    padding-left: 10px;
    position: relative;
}

.privacy-policy li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.privacy-policy .highlight {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #27ae60;
    box-shadow: 0 5px 15px rgba(39,174,96,0.2);
}

.privacy-policy .effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 15px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
}

.privacy-policy strong {
    color: #2c3e50;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #27ae60;
}

.policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
}

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

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 2px;
}

.policy-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #27ae60;
}

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

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.15);
}

.cookie-type h4 {
    color: #27ae60;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.gdpr-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.gdpr-notice h4 {
    color: #856404;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.consent-controls {
    background: #d1ecf1;
    border: 2px solid #bee5eb;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.consent-controls h4 {
    color: #0c5460;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
    position: relative;
}

li::marker {
    color: #27ae60;
}

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

@media (max-width: 768px) {
    .policy-title {
        font-size: 2.2rem;
    }
    
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .policy-content {
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    color: white;
    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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(326, 57%, 56%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.info-title {
    color: hsl(326, 57%, 56%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    background: hsl(326, 57%, 56%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.form-title {
    color: hsl(326, 57%, 31%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-label {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid rgba(131, 44, 87, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(326, 57%, 31%);
}

.form-control:focus {
    border-color: hsl(326, 57%, 56%);
    box-shadow: 0 0 0 0.2rem rgba(131, 44, 87, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(131, 44, 87, 0.5);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(326, 57%, 31%), hsl(326, 57%, 56%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 44, 87, 0.4);
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-title {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(326, 57%, 56%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(326, 57%, 56%);
    margin-bottom: 1.5rem;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: hsl(326, 57%, 56%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.highlight-text {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-left: 4px solid hsl(326, 57%, 56%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.section-title {
    color: hsl(326, 57%, 31%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    color: hsl(326, 57%, 16%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(326, 57%, 56%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

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

.service-content {
    flex: 1;
}

.service-title {
    color: hsl(326, 57%, 31%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: hsl(326, 57%, 16%);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: hsl(326, 57%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(326, 57%, 56%);
}

.service-conditions h6 {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: hsl(326, 57%, 16%);
}

.service-conditions li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.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);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(326, 57%, 56%);
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(326, 57%, 31%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(326, 57%, 16%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(326, 57%, 56%);
    box-shadow: 0 0 0 3px rgba(211, 78, 147, 0.2);
    transform: scale(1.02);
}

.form-control::placeholder {
    color: rgba(132, 36, 76, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 78, 147, 0.4);
    background: linear-gradient(45deg, hsl(326, 57%, 61%), hsl(326, 57%, 36%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: rgba(132, 36, 76, 0.7);
    margin-top: 1rem;
    line-height: 1.4;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(326, 57%, 56%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(326, 57%, 56%);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

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

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.client-name {
    font-weight: 600;
    color: hsl(326, 57%, 31%);
    font-size: 1.1rem;
    margin: 0;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.terms-title {
    font-size: 2.5em;
    color: #27ae60;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.terms-section {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #27ae60;
}

.section-title {
    font-size: 1.4em;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: bold;
    border-bottom: 2px solid #e8f5e8;
    padding-bottom: 8px;
}

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

.highlight-box {
    background: #f0f8f0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #d4edda;
    margin: 20px 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1em;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(326, 57%, 31%);
    margin-bottom: 20px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(326, 57%, 16%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(326, 57%, 31%);
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(326, 57%, 31%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(198, 70, 139, 0.25);
    border-color: hsl(326, 57%, 56%);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c6468b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    color: hsl(326, 57%, 16%);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 2px solid hsl(326, 57%, 56%);
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.highlight {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(326, 57%, 56%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(326, 57%, 56%);
    margin-bottom: 1.5rem;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: hsl(326, 57%, 56%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.highlight-text {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-left: 4px solid hsl(326, 57%, 56%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.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);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(326, 57%, 56%);
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(326, 57%, 31%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(326, 57%, 16%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(326, 57%, 56%);
    box-shadow: 0 0 0 3px rgba(211, 78, 147, 0.2);
    transform: scale(1.02);
}

.form-control::placeholder {
    color: rgba(132, 36, 76, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 78, 147, 0.4);
    background: linear-gradient(45deg, hsl(326, 57%, 61%), hsl(326, 57%, 36%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: rgba(132, 36, 76, 0.7);
    margin-top: 1rem;
    line-height: 1.4;
}

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

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

:root {
            --primary-color: hsl(326, 57%, 31%);
            --secondary-color: hsl(326, 57%, 16%);
            --accent-color: hsl(326, 57%, 56%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.75rem 1rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 12px;
                border: 1px solid var(--accent-color);
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: hsl(326, 57%, 56%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, white, hsl(326, 57%, 56%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.85);
    text-align: left;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-benefits li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    padding-left: 40px;
}

.hero-benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: hsl(326, 57%, 56%);
    font-size: 1.2rem;
}

.hero-buttons {
    margin-top: 50px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

.btn-primary-hero {
    background: hsl(326, 57%, 56%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary-hero:hover {
    background: hsl(326, 57%, 46%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    color: white;
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid hsl(326, 57%, 56%);
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    color: hsl(326, 57%, 56%);
}

.btn-secondary-hero:hover {
    background: hsl(326, 57%, 56%);
    color: white;
    transform: translateY(-3px);
}

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 200px;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(326, 57%, 56%);
}

.stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(326, 57%, 56%) 0deg, hsl(326, 57%, 56%) var(--percentage), rgba(255,255,255,0.2) var(--percentage), rgba(255,255,255,0.2) 360deg);
    animation: rotate 2s ease-in-out;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-inner {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 1.8rem;
    color: hsl(326, 57%, 31%);
    margin-bottom: 5px;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(326, 57%, 31%);
    line-height: 1;
}

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

.stat-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.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);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: hsl(326, 57%, 56%);
}

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

.benefit-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(326, 57%, 31%);
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(326, 57%, 16%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(326, 57%, 56%);
    box-shadow: 0 0 0 3px rgba(211, 78, 147, 0.2);
    transform: scale(1.02);
}

.form-control::placeholder {
    color: rgba(132, 36, 76, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    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;
}

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 78, 147, 0.4);
    background: linear-gradient(45deg, hsl(326, 57%, 61%), hsl(326, 57%, 36%));
}

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

.privacy-note {
    font-size: 0.85rem;
    color: rgba(132, 36, 76, 0.7);
    margin-top: 1rem;
    line-height: 1.4;
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    color: white;
    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="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(326, 57%, 56%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.info-title {
    color: hsl(326, 57%, 56%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    background: hsl(326, 57%, 56%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.form-title {
    color: hsl(326, 57%, 31%);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.form-label {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid rgba(131, 44, 87, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(326, 57%, 31%);
}

.form-control:focus {
    border-color: hsl(326, 57%, 56%);
    box-shadow: 0 0 0 0.2rem rgba(131, 44, 87, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(131, 44, 87, 0.5);
}

.submit-btn {
    background: linear-gradient(45deg, hsl(326, 57%, 31%), hsl(326, 57%, 56%));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 44, 87, 0.4);
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-title {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hours-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(326, 57%, 56%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.content-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(326, 57%, 56%);
    margin-bottom: 1.5rem;
    position: relative;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    position: relative;
    margin-bottom: 2rem;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: hsl(326, 57%, 56%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.highlight-text {
    color: hsl(326, 57%, 56%);
    font-weight: 600;
}

.mission-values {
    background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border-left: 4px solid hsl(326, 57%, 56%);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
}

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

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(326, 57%, 31%);
    margin-bottom: 20px;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(326, 57%, 56%);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(326, 57%, 16%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(326, 57%, 31%);
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: hsl(326, 57%, 31%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(198, 70, 139, 0.25);
    border-color: hsl(326, 57%, 56%);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c6468b'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.accordion-body {
    padding: 30px;
    background: white;
    color: hsl(326, 57%, 16%);
    font-size: 1rem;
    line-height: 1.7;
    border-top: 2px solid hsl(326, 57%, 56%);
}

.accordion-body p {
    margin-bottom: 15px;
}

.accordion-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.highlight {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: hsl(326, 57%, 56%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: hsl(326, 57%, 56%);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

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

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.client-name {
    font-weight: 600;
    color: hsl(326, 57%, 31%);
    font-size: 1.1rem;
    margin: 0;
}

.client-location {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.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); }
}

.advantages-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.advantages-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: hsl(326, 57%, 56%);
    margin: 20px auto;
    border-radius: 2px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    height: 100%;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(326, 57%, 56%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(326, 57%, 31%), hsl(326, 57%, 16%));
}

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

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(326, 57%, 16%);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
}

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

.section-title {
    color: hsl(326, 57%, 31%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    color: hsl(326, 57%, 16%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(326, 57%, 56%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(326, 57%, 56%), hsl(326, 57%, 31%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

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

.service-content {
    flex: 1;
}

.service-title {
    color: hsl(326, 57%, 31%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: hsl(326, 57%, 16%);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-conditions {
    background: hsl(326, 57%, 95%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(326, 57%, 56%);
}

.service-conditions h6 {
    color: hsl(326, 57%, 31%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: hsl(326, 57%, 16%);
}

.service-conditions li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

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

footer {
    background: linear-gradient(135deg, hsl(326, 57%, 16%) 0%, hsl(326, 57%, 31%) 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(326, 57%, 56%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.95rem;
}

footer a:hover {
    color: hsl(326, 57%, 56%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

footer .contact-info {
    margin-bottom: 15px;
}

footer .contact-info i {
    color: hsl(326, 57%, 56%);
    margin-right: 10px;
    width: 20px;
}

footer .footer-links {
    list-style: none;
    padding: 0;
}

footer .footer-links li {
    margin-bottom: 8px;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(326, 57%, 31%) 0%, hsl(326, 57%, 16%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-notice .btn {
    margin-right: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept {
    background-color: hsl(326, 57%, 56%);
    border: 2px solid hsl(326, 57%, 56%);
    color: white;
}

.cookie-notice .btn-accept:hover {
    background-color: hsl(326, 57%, 46%);
    border-color: hsl(326, 57%, 46%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.cookie-notice .btn-learn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}