:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 100px 0;
    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"><defs><pattern id="paws" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws)"/></svg>');
    opacity: 0.1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 57%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

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

.story-block h3 {
    color: hsl(297, 55%, 57%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

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

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

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

.mission-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    color: hsl(297, 55%, 57%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(297, 55%, 57%), transparent);
    margin: 3rem 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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="60" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(297, 55%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    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.1), transparent);
    transition: left 0.6s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(297, 55%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: white;
    transform: scale(1.1);
}

.advantage-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(297, 55%, 85%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(297, 55%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.privacy-policy {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.privacy-header h1 {
    font-size: 2.5em;
    margin: 0 0 10px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

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

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

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

.privacy-section h2 {
    color: #667eea;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f4;
    font-weight: 400;
}

.privacy-section h3 {
    color: #495057;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.privacy-section p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05em;
}

.privacy-section ul {
    padding-left: 25px;
    margin: 20px 0;
}

.privacy-section li {
    margin-bottom: 12px;
    font-size: 1.05em;
}

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

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .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: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cookies-policy h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.cookies-policy h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
}

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 15px;
    border-radius: 5px;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
}

.cookies-policy ul {
    margin: 20px 0;
    padding-left: 0;
}

.cookies-policy li {
    list-style: none;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b6b;
    transition: transform 0.3s ease;
}

.cookies-policy li:hover {
    transform: translateX(5px);
}

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

.cookie-type {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.consent-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #ff9a56;
}

.gdpr-highlight {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #4ecdc4;
}

.update-notice {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-info {
    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: fit-content;
}

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

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

.working-hours {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid hsl(297, 55%, 57%);
}

.hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(297, 55%, 57%);
}

.hours-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.contact-form {
    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);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-control:focus {
    outline: none;
    border-color: hsl(297, 55%, 57%);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(189, 85, 150, 0.2);
}

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

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, hsl(297, 55%, 57%), hsl(297, 55%, 47%));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(189, 85, 150, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 85, 150, 0.4);
    background: linear-gradient(45deg, hsl(297, 55%, 47%), hsl(297, 55%, 37%));
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 100px 0;
    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"><defs><pattern id="paws" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws)"/></svg>');
    opacity: 0.1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 57%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

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

.story-block h3 {
    color: hsl(297, 55%, 57%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

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

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

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

.mission-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    color: hsl(297, 55%, 57%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(297, 55%, 57%), transparent);
    margin: 3rem 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

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

.section-subtitle {
    color: hsl(297, 55%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: hsl(297, 55%, 57%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(297, 55%, 32%);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(297, 55%, 57%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 17%);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(297, 55%, 32%);
    text-align: center;
    margin-top: auto;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.terms-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-list {
    color: hsl(297, 55%, 85%);
    line-height: 1.8;
}

.terms-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(297, 55%, 57%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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="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); }
}

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

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

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

.newsletter-description {
    color: hsl(297, 55%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(297, 55%, 87%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(297, 55%, 17%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(297, 55%, 57%);
    box-shadow: 0 0 0 4px hsla(297, 55%, 57%, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(297, 55%, 60%);
}

.newsletter-btn {
    background: linear-gradient(135deg, hsl(297, 55%, 57%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    box-shadow: 0 8px 25px hsla(297, 55%, 32%, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px hsla(297, 55%, 32%, 0.4);
    background: linear-gradient(135deg, hsl(297, 55%, 62%) 0%, hsl(297, 55%, 37%) 100%);
}

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

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, hsla(297, 55%, 57%, 0.1) 0%, hsla(297, 55%, 32%, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid hsla(297, 55%, 57%, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: hsl(297, 55%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.benefit-title {
    color: hsl(297, 55%, 17%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-text {
    color: hsl(297, 55%, 35%);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(297, 55%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 2px solid hsl(297, 55%, 57%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

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

.testimonial-quote {
    font-size: 2.5rem;
    color: hsl(297, 55%, 57%);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: hsl(297, 55%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(297, 55%, 32%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(297, 55%, 50%);
    font-size: 0.9rem;
}

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

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

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

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

.terms-title {
    text-align: center;
    color: #1a252f;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1em;
    margin-bottom: 40px;
    font-style: italic;
}

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

.section-title {
    color: #007bff;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "▶";
    margin-right: 10px;
    color: #28a745;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    color: #495057;
}

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

.terms-list li {
    margin-bottom: 8px;
    color: #495057;
}

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

.important-notice {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #e17055;
    margin: 25px 0;
    font-weight: 500;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #dee2e6;
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 80px 0;
    color: white;
}

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

.faq-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: hsl(297, 55%, 57%);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: hsl(297, 55%, 57%);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-card.active .faq-answer {
    padding: 20px 30px 30px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question,
    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-question::after {
        right: 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 100px 0;
    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"><defs><pattern id="paws" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws)"/></svg>');
    opacity: 0.1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 57%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

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

.story-block h3 {
    color: hsl(297, 55%, 57%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

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

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

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

.mission-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    color: hsl(297, 55%, 57%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(297, 55%, 57%), transparent);
    margin: 3rem 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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="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); }
}

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

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

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

.newsletter-description {
    color: hsl(297, 55%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(297, 55%, 87%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(297, 55%, 17%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(297, 55%, 57%);
    box-shadow: 0 0 0 4px hsla(297, 55%, 57%, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(297, 55%, 60%);
}

.newsletter-btn {
    background: linear-gradient(135deg, hsl(297, 55%, 57%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    box-shadow: 0 8px 25px hsla(297, 55%, 32%, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px hsla(297, 55%, 32%, 0.4);
    background: linear-gradient(135deg, hsl(297, 55%, 62%) 0%, hsl(297, 55%, 37%) 100%);
}

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

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, hsla(297, 55%, 57%, 0.1) 0%, hsla(297, 55%, 32%, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid hsla(297, 55%, 57%, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: hsl(297, 55%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.benefit-title {
    color: hsl(297, 55%, 17%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-text {
    color: hsl(297, 55%, 35%);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(297, 55%, 32%);
            --secondary-color: hsl(297, 55%, 17%);
            --accent-color: hsl(297, 55%, 57%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: white !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem 0.75rem;
        }
        
        .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-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .logo-img {
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
            transition: transform 0.3s ease;
        }
        
        .logo-img:hover {
            transform: rotate(5deg) scale(1.1);
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                margin: 0.25rem 0;
                text-align: center;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(297, 55%, 57%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(297, 55%, 80%);
    margin-bottom: 30px;
    font-weight: 300;
    animation: slideInUp 1s ease-out 0.2s both;
}

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

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.benefits-list li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.benefits-list li:nth-child(even) {
    animation: slideInRight 1s ease-out 0.6s both;
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: hsl(297, 55%, 57%);
}

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

.btn-primary-custom {
    background: hsl(297, 55%, 57%);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(297, 55%, 47%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    padding: 13px 38px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    display: inline-block;
    margin: 10px 15px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        margin: 15px 0;
        text-align: center;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

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

.section-subtitle {
    color: hsl(297, 55%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 2px solid hsl(297, 55%, 57%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

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

.testimonial-quote {
    font-size: 2.5rem;
    color: hsl(297, 55%, 57%);
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-text {
    color: hsl(297, 55%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(297, 55%, 32%);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: hsl(297, 55%, 50%);
    font-size: 0.9rem;
}

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(297, 55%, 57%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 100px 0;
    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"><defs><pattern id="paws" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23paws)"/></svg>');
    opacity: 0.1;
}

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 57%);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    font-style: italic;
}

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

.story-block h3 {
    color: hsl(297, 55%, 57%);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.95);
}

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

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

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

.mission-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.mission-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 1rem;
}

.mission-card h4 {
    color: hsl(297, 55%, 57%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, transparent, hsl(297, 55%, 57%), transparent);
    margin: 3rem 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .story-block {
        padding: 1.5rem;
    }
    
    .about-image {
        height: 300px;
    }
}

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

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

.section-subtitle {
    color: hsl(297, 55%, 75%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: hsl(297, 55%, 57%);
}

.service-icon {
    font-size: 3.5rem;
    color: hsl(297, 55%, 32%);
    margin-bottom: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(297, 55%, 57%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(297, 55%, 17%);
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(297, 55%, 32%);
    text-align: center;
    margin-top: auto;
}

.price-note {
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    margin-top: 0.5rem;
}

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.terms-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.terms-list {
    color: hsl(297, 55%, 85%);
    line-height: 1.8;
}

.terms-list li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(297, 55%, 57%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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="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); }
}

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

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

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

.newsletter-description {
    color: hsl(297, 55%, 25%);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    border: 2px solid hsl(297, 55%, 87%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(297, 55%, 17%);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(297, 55%, 57%);
    box-shadow: 0 0 0 4px hsla(297, 55%, 57%, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: hsl(297, 55%, 60%);
}

.newsletter-btn {
    background: linear-gradient(135deg, hsl(297, 55%, 57%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 160px;
    box-shadow: 0 8px 25px hsla(297, 55%, 32%, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px hsla(297, 55%, 32%, 0.4);
    background: linear-gradient(135deg, hsl(297, 55%, 62%) 0%, hsl(297, 55%, 37%) 100%);
}

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

.newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, hsla(297, 55%, 57%, 0.1) 0%, hsla(297, 55%, 32%, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid hsla(297, 55%, 57%, 0.2);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: hsl(297, 55%, 57%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.benefit-title {
    color: hsl(297, 55%, 17%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-text {
    color: hsl(297, 55%, 35%);
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    padding: 80px 0;
    color: white;
}

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

.faq-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: hsl(297, 55%, 57%);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: hsl(297, 55%, 57%);
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-card.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-card.active .faq-answer {
    padding: 20px 30px 30px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question,
    .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-question::after {
        right: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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="60" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="80" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s infinite linear;
}

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

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

.section-subtitle {
    color: hsl(297, 55%, 80%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    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.1), transparent);
    transition: left 0.6s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: hsl(297, 55%, 57%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(297, 55%, 57%);
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    color: white;
    transform: scale(1.1);
}

.advantage-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.advantage-description {
    color: hsl(297, 55%, 85%);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .advantage-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        font-size: 2.5rem;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(297, 55%, 32%) 0%, hsl(297, 55%, 17%) 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: radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-info {
    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: fit-content;
}

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

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

.working-hours {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid hsl(297, 55%, 57%);
}

.hours-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: hsl(297, 55%, 57%);
}

.hours-text {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
}

.contact-form {
    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);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.form-control:focus {
    outline: none;
    border-color: hsl(297, 55%, 57%);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 3px rgba(189, 85, 150, 0.2);
}

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

.form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, hsl(297, 55%, 57%), hsl(297, 55%, 47%));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(189, 85, 150, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(189, 85, 150, 0.4);
    background: linear-gradient(45deg, hsl(297, 55%, 47%), hsl(297, 55%, 37%));
}

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

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

footer {
    background: linear-gradient(135deg, hsl(297, 55%, 17%) 0%, hsl(297, 55%, 32%) 100%);
    color: white;
    padding: 50px 0 30px;
    margin-top: 80px;
}

footer h5 {
    color: hsl(297, 55%, 57%);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer p, footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a:hover {
    color: hsl(297, 55%, 57%);
    text-decoration: none;
    transform: translateX(5px);
}

footer .list-unstyled li {
    margin-bottom: 8px;
    padding-left: 0;
}

footer .border-top {
    border-color: hsl(297, 55%, 57%) !important;
    margin-top: 40px;
    padding-top: 20px;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(297, 55%, 57%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: hsl(297, 65%, 67%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(297, 55%, 57%);
    color: hsl(297, 55%, 57%);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(297, 55%, 57%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    
    footer .col-md-3, footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .cookie-notice .btn-accept, .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}