:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(186, 85, 102, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: hsl(349, 62%, 25%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 2px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 102, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(186, 85, 102, 0.25);
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(186, 85, 102, 0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 85, 102, 0.1);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.block-title {
    font-size: 2.2rem;
    color: hsl(349, 62%, 25%);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.highlight-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(186, 85, 102, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 30px;
        margin: 30px 0;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.section-title {
    color: hsl(349, 62%, 25%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(349, 62%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(186, 47, 89, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(186, 47, 89, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(186, 47, 89, 0.2);
    border-color: hsl(349, 62%, 65%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(349, 62%, 25%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements::after {
    content: '✨';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" 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(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    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.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::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-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

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

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

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    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;
    line-height: 1.4;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.privacy-header h1 {
    font-size: 2.8rem;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

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

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

.privacy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.privacy-section h2::before {
    content: "💅";
    margin-right: 15px;
    font-size: 1.5rem;
}

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

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
}

.privacy-list li {
    margin: 12px 0;
    padding: 15px;
    background: #ffeef7;
    border-radius: 8px;
    border-left: 3px solid #ff6b9d;
    position: relative;
}

.privacy-list li::before {
    content: "✨";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 5px;
    border-radius: 50%;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5f8, #ffeef7);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #ff6b9d;
    margin: 20px 0;
}

.gdpr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    margin: 10px 0;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #e91e63, #f06292);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.3);
}

.policy-header h1 {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #e91e63;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #f8bbd9;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e91e63;
}

.cookie-type {
    background: #fdf2f8;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #e91e63;
    border-radius: 0 10px 10px 0;
}

.cookie-type h4 {
    color: #e91e63;
    margin: 0 0 10px 0;
    font-size: 1.3em;
}

.highlight-box {
    background: linear-gradient(135deg, #fff0f6, #fce4ec);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid #f8bbd9;
}

.consent-notice {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #4caf50;
    margin: 20px 0;
}

.important-note {
    background: #fff3e0;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
    margin: 20px 0;
}

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    position: relative;
}

li::marker {
    color: #e91e63;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.contact-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.contact-info-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

.form-label {
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(349, 62%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(349, 62%, 65%);
    box-shadow: 0 0 0 3px rgba(184, 58, 82, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(184, 58, 82, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 58, 82, 0.4);
    background: linear-gradient(45deg, hsl(349, 62%, 45%), hsl(349, 62%, 70%));
}

.contact-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.consultation-process h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.step-number {
    background: hsl(349, 62%, 65%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.working-hours h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(186, 85, 102, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: hsl(349, 62%, 25%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 2px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 102, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(186, 85, 102, 0.25);
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(186, 85, 102, 0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 85, 102, 0.1);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.block-title {
    font-size: 2.2rem;
    color: hsl(349, 62%, 25%);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.highlight-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(186, 85, 102, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 30px;
        margin: 30px 0;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

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

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

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

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

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

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

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

.nav-tabs .nav-link:hover {
    color: hsl(349, 62%, 40%);
    background: rgba(199, 49, 78, 0.1);
}

.nav-tabs .nav-link.active {
    color: white;
    background: hsl(349, 62%, 40%);
    box-shadow: 0 8px 25px rgba(199, 49, 78, 0.3);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 49, 78, 0.15);
    border-color: hsl(349, 62%, 65%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    color: hsl(349, 62%, 25%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(349, 62%, 40%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-duration {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-service {
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 49, 78, 0.3);
    color: white;
}

.tab-content {
    margin-top: 30px;
}

.service-conditions {
    background: rgba(199, 49, 78, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
}

.service-conditions h4 {
    color: hsl(349, 62%, 25%);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-conditions ul {
    list-style: none;
    padding: 0;
}

.service-conditions li {
    color: #6c757d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(349, 62%, 40%);
    font-weight: bold;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 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"><defs><pattern id="sparkle" 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(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: hsl(349, 62%, 25%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(349, 62%, 25%), hsl(349, 62%, 40%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(349, 62%, 25%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

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

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(349, 62%, 90%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(349, 62%, 65%);
    box-shadow: 0 0 0 3px rgba(178, 68, 84, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 25%));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(178, 68, 84, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(349, 62%, 45%), hsl(349, 62%, 30%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 68, 84, 0.4);
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(349, 62%, 35%);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(349, 62%, 65%);
    padding-top: 15px;
}

.client-name {
    color: hsl(349, 62%, 25%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

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

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

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: linear-gradient(135deg, #ffeef7 0%, #fff5f8 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.terms-title {
    text-align: center;
    color: #d63384;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #f8d7da;
    padding-bottom: 15px;
}

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

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

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

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

.important-notice {
    background: #fff2f2;
    border: 2px dashed #d63384;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-style: italic;
    color: #b02a5b;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.faq-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: white;
    color: hsl(349, 62%, 40%);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.faq-question {
    background: linear-gradient(45deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin: 0 10px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(186, 85, 102, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: hsl(349, 62%, 25%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 2px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 102, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(186, 85, 102, 0.25);
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(186, 85, 102, 0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 85, 102, 0.1);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.block-title {
    font-size: 2.2rem;
    color: hsl(349, 62%, 25%);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.highlight-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(186, 85, 102, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 30px;
        margin: 30px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 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"><defs><pattern id="sparkle" 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(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: hsl(349, 62%, 25%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(349, 62%, 25%), hsl(349, 62%, 40%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(349, 62%, 25%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

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

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(349, 62%, 90%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(349, 62%, 65%);
    box-shadow: 0 0 0 3px rgba(178, 68, 84, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 25%));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(178, 68, 84, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(349, 62%, 45%), hsl(349, 62%, 30%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 68, 84, 0.4);
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(349, 62%, 35%);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}

:root {
            --primary-color: hsl(349, 62%, 40%);
            --secondary-color: hsl(349, 62%, 25%);
            --accent-color: hsl(349, 62%, 65%);
        }
        
        .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.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .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-glow {
            filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(15deg);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    opacity: 0.08;
    transform: rotate(-20deg);
}

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

.hero-image {
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    shape-outside: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    float: right;
    margin: 0 0 20px 30px;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 3;
    margin-top: -100px;
    margin-left: -30px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: hsl(349, 62%, 85%);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

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

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

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    border: 2px solid white;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: hsl(349, 62%, 65%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-primary-custom:hover {
    background: hsl(349, 62%, 75%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255,255,255,0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

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

@media (max-width: 768px) {
    .hero-image {
        margin-top: 0;
    }
    
    .hero-image img {
        float: none;
        margin: 0 0 30px 0;
        height: 300px;
    }
    
    .hero-text {
        margin-top: 0;
        margin-left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        justify-content: center;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="sparkle" 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(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

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

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    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.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::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-item:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

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

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

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    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;
    line-height: 1.4;
}

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

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

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

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

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

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

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

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

.nav-tabs .nav-link:hover {
    color: hsl(349, 62%, 40%);
    background: rgba(199, 49, 78, 0.1);
}

.nav-tabs .nav-link.active {
    color: white;
    background: hsl(349, 62%, 40%);
    box-shadow: 0 8px 25px rgba(199, 49, 78, 0.3);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(199, 49, 78, 0.15);
    border-color: hsl(349, 62%, 65%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.service-card h4 {
    color: hsl(349, 62%, 25%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(349, 62%, 40%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-duration {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.btn-service {
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 49, 78, 0.3);
    color: white;
}

.tab-content {
    margin-top: 30px;
}

.service-conditions {
    background: rgba(199, 49, 78, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
}

.service-conditions h4 {
    color: hsl(349, 62%, 25%);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-conditions ul {
    list-style: none;
    padding: 0;
}

.service-conditions li {
    color: #6c757d;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-conditions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(349, 62%, 40%);
    font-weight: bold;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.client-info {
    border-top: 2px solid hsl(349, 62%, 65%);
    padding-top: 15px;
}

.client-name {
    color: hsl(349, 62%, 25%);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-location {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 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"><defs><pattern id="sparkle" 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(%23sparkle)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: hsl(349, 62%, 25%);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, hsl(349, 62%, 25%), hsl(349, 62%, 40%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.newsletter-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: hsl(349, 62%, 25%);
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
}

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

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(349, 62%, 90%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(349, 62%, 65%);
    box-shadow: 0 0 0 3px rgba(178, 68, 84, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 25%));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(178, 68, 84, 0.3);
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(349, 62%, 45%), hsl(349, 62%, 30%));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 68, 84, 0.4);
}

.newsletter-privacy {
    text-align: center;
    font-size: 0.9rem;
    color: hsl(349, 62%, 35%);
    margin-top: 15px;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .subscribe-btn {
        width: 100%;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.contact-info-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

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

.form-label {
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(349, 62%, 25%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(349, 62%, 65%);
    box-shadow: 0 0 0 3px rgba(184, 58, 82, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(184, 58, 82, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 58, 82, 0.4);
    background: linear-gradient(45deg, hsl(349, 62%, 45%), hsl(349, 62%, 70%));
}

.contact-info h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.consultation-process {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.consultation-process h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.step-number {
    background: hsl(349, 62%, 65%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.working-hours h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.section-title {
    color: hsl(349, 62%, 25%);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(349, 62%, 40%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    font-style: italic;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(186, 47, 89, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(186, 47, 89, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(186, 47, 89, 0.2);
    border-color: hsl(349, 62%, 65%);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(349, 62%, 40%), hsl(349, 62%, 65%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(349, 62%, 25%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-elements::after {
    content: '✨';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(186, 85, 102, 0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(186, 85, 102, 0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: hsl(349, 62%, 25%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 2px;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(186, 85, 102, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(186, 85, 102, 0.25);
}

.content-block {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(186, 85, 102, 0.08);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(186, 85, 102, 0.1);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
}

.block-title {
    font-size: 2.2rem;
    color: hsl(349, 62%, 25%);
    margin-bottom: 25px;
    font-weight: 400;
    position: relative;
    padding-left: 30px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(349, 62%, 65%);
    border-radius: 50%;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

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

.highlight-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(186, 85, 102, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(349, 62%, 25%);
    margin-bottom: 10px;
}

.stat-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .block-title {
        font-size: 1.8rem;
    }
    
    .about-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 30px;
        margin: 30px 0;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: white;
    color: hsl(349, 62%, 40%);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.faq-question {
    background: linear-gradient(45deg, hsl(349, 62%, 65%), hsl(349, 62%, 40%));
    color: white;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 200px;
        text-align: center;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        margin: 0 10px;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(349, 62%, 25%) 0%, hsl(349, 62%, 40%) 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(349, 62%, 65%);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(349, 62%, 65%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: hsl(349, 62%, 65%);
    padding-left: 5px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info a {
    color: hsl(349, 62%, 65%);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(349, 62%, 40%) 0%, hsl(349, 62%, 25%) 100%);
    color: #ffffff;
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-btn {
    background: hsl(349, 62%, 65%);
    border: none;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-btn:hover {
    background: #ffffff;
    color: hsl(349, 62%, 40%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-secondary {
    background: transparent;
    border: 2px solid hsl(349, 62%, 65%);
    color: hsl(349, 62%, 65%);
}

.cookie-btn-secondary:hover {
    background: hsl(349, 62%, 65%);
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .row {
        text-align: center;
    }
}