:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

.about-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 30px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(300, 32%, 59%) 0%, transparent 50%);
    opacity: 0.2;
    border-radius: 15px;
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(300, 32%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(300, 32%, 59%);
    font-weight: 600;
}

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

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.value-title {
    font-size: 1.3rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(300, 32%, 59%);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(300, 32%, 34%);
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    color: hsl(300, 32%, 19%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="hsl(300, 32%, 59%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

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

.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: hsl(300, 32%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(300, 32%, 59%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-circle:hover {
    transform: scale(1.05);
    border-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(hsl(300, 32%, 59%) 0deg, transparent 360deg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::before {
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(300, 32%, 59%);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.stat-item {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #3498db;
}

.privacy-header h1 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-header .last-updated {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
}

.privacy-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
    transition: transform 0.3s ease;
}

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

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

.privacy-section h2::before {
    content: "🔐";
    margin-right: 10px;
    font-size: 0.9em;
}

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

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

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

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

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

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

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

.data-type-card {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.data-type-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.rights-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #3498db;
    text-align: center;
    transition: all 0.3s ease;
}

.rights-card:hover {
    background: #3498db;
    color: white;
    transform: scale(1.05);
}

.contact-info {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 2.2em;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .data-types,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    color: #34495e;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(45deg, #3498db, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header .subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
    font-weight: 300;
}

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

.section-title {
    color: #2c3e50;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

.cookie-type {
    background: #ecf0f1;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.cookie-type h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.cookie-type p {
    margin: 0;
    color: #5d6d7e;
}

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

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

.consent-info {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.consent-info h4 {
    color: #27ae60;
    margin-top: 0;
    font-weight: 600;
}

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    color: #5d6d7e;
}

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

.important-notice h4 {
    color: #856404;
    margin-top: 0;
    font-weight: 600;
}

.gdpr-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #6c757d;
    margin: 25px 0;
}

.gdpr-section h4 {
    color: #495057;
    margin-top: 0;
    font-weight: 600;
}

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 10px;
    }
    
    .policy-content {
        padding: 25px 20px;
    }
    
    .policy-header h1 {
        font-size: 2em;
    }
    
    .section-title {
        font-size: 1.5em;
    }
}

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(300, 32%, 34%) 0%, hsl(300, 32%, 19%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: hsl(300, 32%, 90%);
    font-size: 16px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(300, 32%, 59%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: white;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(300, 32%, 59%), hsl(300, 32%, 49%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(300, 32%, 69%), hsl(300, 32%, 59%));
}

.contact-info {
    padding-left: 40px;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(300, 32%, 59%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.consultation-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: hsl(300, 32%, 85%);
}

.hours-info {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid hsl(300, 32%, 59%);
}

.hours-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(300, 32%, 59%);
}

.hours-text {
    font-size: 16px;
    color: hsl(300, 32%, 80%);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

.about-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 30px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(300, 32%, 59%) 0%, transparent 50%);
    opacity: 0.2;
    border-radius: 15px;
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(300, 32%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(300, 32%, 59%);
    font-weight: 600;
}

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

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.value-title {
    font-size: 1.3rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

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

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

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

.section-subtitle {
    color: hsl(300, 32%, 59%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(300, 32%, 59%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

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

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

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

.service-title {
    color: hsl(300, 32%, 19%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-price {
    background: linear-gradient(135deg, hsl(300, 32%, 34%), hsl(300, 32%, 19%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card:hover .service-price {
    background: linear-gradient(135deg, hsl(300, 32%, 59%), hsl(300, 32%, 34%));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 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="scissors" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 10L40 40M40 10L10 40" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23scissors)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(300, 32%, 59%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(300, 32%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(300, 32%, 34%);
    box-shadow: 0 0 0 4px rgba(148, 98, 138, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(300, 32%, 59%);
    font-weight: 400;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(148, 98, 138, 0.4);
    background: linear-gradient(135deg, hsl(300, 32%, 39%) 0%, hsl(300, 32%, 24%) 100%);
}

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

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

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

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.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: hsl(300, 32%, 59%);
    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: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

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

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

.testimonial-text {
    color: hsl(300, 32%, 19%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.client-info {
    border-top: 2px solid hsl(300, 32%, 59%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(300, 32%, 59%);
    font-size: 1rem;
    font-weight: 500;
}

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

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

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

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

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

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

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

.highlight-box {
    background: #ecf0f1;
    border: 2px solid #bdc3c7;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 500;
}

.important-notice {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(255,107,107,0.3);
}

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

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

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

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.faq-accordion .accordion-button {
    background: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(300, 32%, 59%);
    color: white;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(300, 32%, 59%, 0.25);
    border-color: hsl(300, 32%, 59%);
}

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

.faq-accordion .accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 30px;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-number {
    display: inline-block;
    background: hsl(300, 32%, 59%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.about-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 30px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(300, 32%, 59%) 0%, transparent 50%);
    opacity: 0.2;
    border-radius: 15px;
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(300, 32%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(300, 32%, 59%);
    font-weight: 600;
}

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

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.value-title {
    font-size: 1.3rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 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="scissors" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 10L40 40M40 10L10 40" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23scissors)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(300, 32%, 59%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(300, 32%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(300, 32%, 34%);
    box-shadow: 0 0 0 4px rgba(148, 98, 138, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(300, 32%, 59%);
    font-weight: 400;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(148, 98, 138, 0.4);
    background: linear-gradient(135deg, hsl(300, 32%, 39%) 0%, hsl(300, 32%, 24%) 100%);
}

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

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

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

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

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}

:root {
            --primary-color: hsl(300, 32%, 34%);
            --secondary-color: hsl(300, 32%, 19%);
            --accent-color: hsl(300, 32%, 59%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            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 {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid var(--accent-color);
            padding: 0.5rem;
        }
        
        .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.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(270deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

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

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

.hero-content h2 {
    font-size: 1.8rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.hero-features li {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.hero-features li i {
    color: hsl(300, 32%, 59%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.hero-buttons {
    margin-top: 3rem;
}

.btn-primary-custom {
    background: hsl(300, 32%, 59%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(300, 32%, 59%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: hsl(300, 32%, 59%);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

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

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

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

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.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: hsl(300, 32%, 59%);
    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: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

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

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

.testimonial-text {
    color: hsl(300, 32%, 19%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    padding-top: 20px;
}

.client-info {
    border-top: 2px solid hsl(300, 32%, 59%);
    padding-top: 20px;
}

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

.client-location {
    color: hsl(300, 32%, 59%);
    font-size: 1rem;
    font-weight: 500;
}

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

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

.about-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

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

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 30px;
}

.content-image {
    flex: 0 0 400px;
    position: relative;
}

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

.content-image:hover img {
    transform: scale(1.05);
}

.content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsl(300, 32%, 59%) 0%, transparent 50%);
    opacity: 0.2;
    border-radius: 15px;
    pointer-events: none;
}

.section-title {
    font-size: 2.2rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(300, 32%, 59%);
    border-radius: 2px;
}

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

.highlight-text {
    color: hsl(300, 32%, 59%);
    font-weight: 600;
}

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

.value-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.value-title {
    font-size: 1.3rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .content-row {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .content-image {
        flex: none;
        width: 100%;
    }
    
    .content-text {
        padding: 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

.section-subtitle {
    color: hsl(300, 32%, 59%);
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(300, 32%, 59%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 1);
}

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

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

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

.service-title {
    color: hsl(300, 32%, 19%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-price {
    background: linear-gradient(135deg, hsl(300, 32%, 34%), hsl(300, 32%, 19%));
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-card:hover .service-price {
    background: linear-gradient(135deg, hsl(300, 32%, 59%), hsl(300, 32%, 34%));
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 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="scissors" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M10 10L40 40M40 10L10 40" stroke="rgba(255,255,255,0.03)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23scissors)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid hsl(300, 32%, 59%);
    border-radius: 50px;
    font-size: 1.1rem;
    background: white;
    color: hsl(300, 32%, 19%);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(300, 32%, 34%);
    box-shadow: 0 0 0 4px rgba(148, 98, 138, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: hsl(300, 32%, 59%);
    font-weight: 400;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(148, 98, 138, 0.4);
    background: linear-gradient(135deg, hsl(300, 32%, 39%) 0%, hsl(300, 32%, 24%) 100%);
}

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

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

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

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

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

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

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(300, 32%, 59%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.faq-accordion .accordion-button {
    background: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: hsl(300, 32%, 59%);
    color: white;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(300, 32%, 59%, 0.25);
    border-color: hsl(300, 32%, 59%);
}

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

.faq-accordion .accordion-body {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
    padding: 30px;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.faq-number {
    display: inline-block;
    background: hsl(300, 32%, 59%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    padding: 80px 0;
}

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

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: hsl(300, 32%, 59%);
}

.advantage-icon {
    font-size: 3rem;
    color: hsl(300, 32%, 34%);
    margin-bottom: 20px;
    display: block;
}

.advantage-title {
    color: hsl(300, 32%, 19%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(300, 32%, 34%) 0%, hsl(300, 32%, 19%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: hsl(300, 32%, 90%);
    font-size: 16px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(300, 32%, 59%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    color: white;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(300, 32%, 59%), hsl(300, 32%, 49%));
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, hsl(300, 32%, 69%), hsl(300, 32%, 59%));
}

.contact-info {
    padding-left: 40px;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, white, hsl(300, 32%, 59%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.consultation-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: hsl(300, 32%, 85%);
}

.hours-info {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid hsl(300, 32%, 59%);
}

.hours-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(300, 32%, 59%);
}

.hours-text {
    font-size: 16px;
    color: hsl(300, 32%, 80%);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-info {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="hsl(300, 32%, 59%)" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
}

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

.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: hsl(300, 32%, 59%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.stat-circle {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid hsl(300, 32%, 59%);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-circle:hover {
    transform: scale(1.05);
    border-color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: conic-gradient(hsl(300, 32%, 59%) 0deg, transparent 360deg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-circle:hover::before {
    opacity: 0.3;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(300, 32%, 59%);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: hsl(300, 32%, 59%);
    text-align: center;
    font-weight: 500;
    line-height: 1.2;
}

.stat-item {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

.footer {
    background: linear-gradient(135deg, hsl(300, 32%, 19%) 0%, hsl(300, 32%, 34%) 100%);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer h5 {
    color: hsl(300, 32%, 59%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer a:hover {
    color: hsl(300, 32%, 59%);
    transform: translateX(5px);
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

.contact-info i {
    color: hsl(300, 32%, 59%);
    margin-right: 10px;
    width: 20px;
}

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

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

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

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

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

.cookie-notice .btn-learn:hover {
    background: hsl(300, 32%, 59%);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        margin: 5px;
        width: 100%;
        max-width: 200px;
    }
}