:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(247, 34%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid hsl(247, 34%, 67%);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.content-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, hsl(247, 34%, 67%), white);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(247, 34%, 67%);
    font-weight: 600;
}

.story-section {
    margin-bottom: 3rem;
}

.mission-section {
    margin-bottom: 3rem;
}

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

.advantages-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: hsl(247, 34%, 67%);
    background: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(247, 34%, 42%), hsl(247, 34%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(247, 34%, 27%), hsl(247, 34%, 42%));
}

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

.advantage-title {
    color: hsl(247, 34%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

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

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

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

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

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

.stat-label {
    color: hsl(247, 34%, 67%);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), white);
    border-radius: 4px;
    animation: fillProgress 2s ease-out;
}

@keyframes fillProgress {
    from { width: 0%; }
}

.chart-container {
    height: 150px;
    position: relative;
    margin-top: 1rem;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, hsl(247, 34%, 67%), rgba(255,255,255,0.8));
    border-radius: 4px 4px 0 0;
    animation: growBar 1.5s ease-out;
}

@keyframes growBar {
    from { height: 0%; }
}

.large-stat {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .large-stat {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

.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: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-policy h1 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #3498db;
    background: rgba(52, 152, 219, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 18px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.privacy-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px dashed #bdc3c7;
}

.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(0,0,0,0.15);
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

.policy-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

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

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
}

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

.section-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

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

.cookie-type {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-type:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
}

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

.highlight-box {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    font-weight: 500;
    font-size: 1.1rem;
}

.consent-notice {
    background: #e8f4fd;
    border: 2px solid #3498db;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    color: #2c3e50;
}

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

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

strong {
    color: #2c3e50;
}

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.contact-info {
    color: white;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

.contact-info .lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.consultation-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.step-number {
    background: hsl(247, 34%, 67%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
}

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

.working-hours h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.working-hours h4::before {
    content: '🕒';
    margin-right: 10px;
    font-size: 1.2rem;
}

.working-hours p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), hsl(247, 34%, 42%));
    border-radius: 20px 20px 0 0;
}

.contact-form h3 {
    color: hsl(247, 34%, 27%);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    color: hsl(247, 34%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: hsl(247, 34%, 27%);
}

.form-control:focus {
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 0 0 0.2rem rgba(106, 90, 205, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

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

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

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.3);
    background: linear-gradient(135deg, hsl(247, 34%, 47%) 0%, hsl(247, 34%, 32%) 100%);
}

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

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .step-item {
        padding: 15px;
    }
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(247, 34%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid hsl(247, 34%, 67%);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.content-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, hsl(247, 34%, 67%), white);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(247, 34%, 67%);
    font-weight: 600;
}

.story-section {
    margin-bottom: 3rem;
}

.mission-section {
    margin-bottom: 3rem;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid hsl(247, 34%, 67%);
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(247, 34%, 67%);
    border-color: hsl(247, 34%, 67%);
    color: white;
}

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

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

.service-icon {
    font-size: 3rem;
    color: hsl(247, 34%, 42%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(247, 34%, 67%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(247, 34%, 27%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(247, 34%, 42%);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: right;
}

.service-conditions {
    background: rgba(247, 34%, 67%, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
    border-left: 5px solid hsl(247, 34%, 67%);
}

.service-conditions h4 {
    color: hsl(247, 34%, 27%);
    margin-bottom: 15px;
}

.service-conditions ul {
    color: #666;
    margin: 0;
}

.service-conditions li {
    margin-bottom: 8px;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: hsl(247, 34%, 27%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), hsl(247, 34%, 42%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(247, 34%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(247, 34%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(247, 34%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 0 0 4px rgba(108, 99, 149, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(247, 34%, 67%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 149, 0.4);
    background: linear-gradient(135deg, hsl(247, 34%, 72%) 0%, hsl(247, 34%, 37%) 100%);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(247, 34%, 55%);
    text-align: center;
    line-height: 1.5;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 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.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.testimonials-subtitle {
    font-size: 1.3rem;
    color: hsl(247, 34%, 87%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(247, 34%, 67%);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(247, 34%, 27%);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid hsl(247, 34%, 87%);
    padding-top: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(247, 34%, 27%);
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.95rem;
    color: hsl(247, 34%, 52%);
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

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

.testimonial-card:nth-child(3n+1) {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
}

.testimonial-card:nth-child(3n+2) {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 100%);
    transform: translateY(20px);
}

.testimonial-card:nth-child(3n+3) {
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.95) 100%);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(3n+2) {
        transform: none;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #4a90e2;
}

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

.terms-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.section-title::before {
    content: "▶";
    color: #4a90e2;
    margin-right: 10px;
    font-size: 0.8em;
}

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

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

.terms-list li {
    list-style: none;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #ecf0f1;
}

.terms-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

.effective-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    font-weight: 600;
    color: #2c3e50;
}

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(247, 34%, 67%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 25px 30px;
    text-align: left;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: hsl(247, 34%, 67%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(247, 34%, 67%);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-body {
    padding: 25px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.accordion-body strong {
    color: hsl(247, 34%, 67%);
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 20px 25px;
    }
    
    .accordion-body {
        padding: 20px 25px;
    }
    
    .accordion-button::after {
        right: 25px;
    }
}

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(247, 34%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid hsl(247, 34%, 67%);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.content-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, hsl(247, 34%, 67%), white);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(247, 34%, 67%);
    font-weight: 600;
}

.story-section {
    margin-bottom: 3rem;
}

.mission-section {
    margin-bottom: 3rem;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: hsl(247, 34%, 27%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), hsl(247, 34%, 42%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(247, 34%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(247, 34%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(247, 34%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 0 0 4px rgba(108, 99, 149, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(247, 34%, 67%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 149, 0.4);
    background: linear-gradient(135deg, hsl(247, 34%, 72%) 0%, hsl(247, 34%, 37%) 100%);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(247, 34%, 55%);
    text-align: center;
    line-height: 1.5;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }

:root {
            --primary-color: hsl(247, 34%, 42%);
            --secondary-color: hsl(247, 34%, 27%);
            --accent-color: hsl(247, 34%, 67%);
        }
        
        .navbar {
            background-color: var(--primary-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border-color: var(--accent-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .company-name {
            background: linear-gradient(135deg, white, var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
        }
        
        @media (max-width: 991px) {
            .navbar-nav {
                background-color: var(--secondary-color);
                border-radius: 10px;
                margin-top: 15px;
                padding: 15px;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px;
                border-radius: 5px;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
                transform: none;
            }
        }

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

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

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

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: hsl(247, 34%, 67%);
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.hero-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features i {
    color: hsl(247, 34%, 67%);
    font-size: 1.2rem;
}

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

.btn-primary-hero {
    background: hsl(247, 34%, 67%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:hover {
    background: hsl(247, 34%, 57%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary-hero {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-hero:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 35%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-image {
        position: static;
        transform: none;
        max-width: 80%;
        margin: 2rem auto;
        display: block;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

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

.stat-label {
    color: hsl(247, 34%, 67%);
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), white);
    border-radius: 4px;
    animation: fillProgress 2s ease-out;
}

@keyframes fillProgress {
    from { width: 0%; }
}

.chart-container {
    height: 150px;
    position: relative;
    margin-top: 1rem;
}

.chart-bar {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, hsl(247, 34%, 67%), rgba(255,255,255,0.8));
    border-radius: 4px 4px 0 0;
    animation: growBar 1.5s ease-out;
}

@keyframes growBar {
    from { height: 0%; }
}

.large-stat {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .large-stat {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

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

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

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

.faq-subtitle {
    font-size: 1.3rem;
    color: hsl(247, 34%, 67%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.accordion-button {
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 25px 30px;
    text-align: left;
    width: 100%;
    position: relative;
    border-radius: 15px;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.1);
    color: hsl(247, 34%, 67%);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.2);
}

.accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    color: hsl(247, 34%, 67%);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-body {
    padding: 25px 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.accordion-body strong {
    color: hsl(247, 34%, 67%);
}

@media (max-width: 768px) {
    .faq-title h2 {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 20px 25px;
    }
    
    .accordion-body {
        padding: 20px 25px;
    }
    
    .accordion-button::after {
        right: 25px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.contact-info {
    color: white;
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

.contact-info .lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.consultation-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.step-number {
    background: hsl(247, 34%, 67%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.step-content p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
}

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

.working-hours h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.working-hours h4::before {
    content: '🕒';
    margin-right: 10px;
    font-size: 1.2rem;
}

.working-hours p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), hsl(247, 34%, 42%));
    border-radius: 20px 20px 0 0;
}

.contact-form h3 {
    color: hsl(247, 34%, 27%);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    color: hsl(247, 34%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: hsl(247, 34%, 27%);
}

.form-control:focus {
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 0 0 0.2rem rgba(106, 90, 205, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

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

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

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

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(106, 90, 205, 0.3);
    background: linear-gradient(135deg, hsl(247, 34%, 47%) 0%, hsl(247, 34%, 32%) 100%);
}

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

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

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .step-item {
        padding: 15px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 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.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.testimonials-subtitle {
    font-size: 1.3rem;
    color: hsl(247, 34%, 87%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(247, 34%, 67%);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: hsl(247, 34%, 27%);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid hsl(247, 34%, 87%);
    padding-top: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(247, 34%, 27%);
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.95rem;
    color: hsl(247, 34%, 52%);
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

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

.testimonial-card:nth-child(3n+1) {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
}

.testimonial-card:nth-child(3n+2) {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.88) 100%);
    transform: translateY(20px);
}

.testimonial-card:nth-child(3n+3) {
    background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.95) 100%);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card:nth-child(3n+2) {
        transform: none;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 2;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: hsl(247, 34%, 67%);
    background: white;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(247, 34%, 42%), hsl(247, 34%, 67%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(247, 34%, 27%), hsl(247, 34%, 42%));
}

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

.advantage-title {
    color: hsl(247, 34%, 27%);
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    color: hsl(247, 34%, 27%);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, hsl(247, 34%, 67%), hsl(247, 34%, 42%));
    border-radius: 2px;
}

.newsletter-description {
    color: hsl(247, 34%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(247, 34%, 35%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

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

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

.email-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid hsl(247, 34%, 85%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 0 0 4px rgba(108, 99, 149, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(247, 34%, 67%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(108, 99, 149, 0.4);
    background: linear-gradient(135deg, hsl(247, 34%, 72%) 0%, hsl(247, 34%, 37%) 100%);
}

.privacy-note {
    font-size: 0.85rem;
    color: hsl(247, 34%, 55%);
    text-align: center;
    line-height: 1.5;
}

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(247, 34%, 67%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid hsl(247, 34%, 67%);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.content-block {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(247, 34%, 67%);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, hsl(247, 34%, 67%), white);
    border-radius: 2px;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-align: justify;
}

.highlight-text {
    color: hsl(247, 34%, 67%);
    font-weight: 600;
}

.story-section {
    margin-bottom: 3rem;
}

.mission-section {
    margin-bottom: 3rem;
}

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

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

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

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

.section-subtitle {
    color: hsl(247, 34%, 67%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid hsl(247, 34%, 67%);
    color: white;
    font-weight: 600;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(247, 34%, 67%);
    border-color: hsl(247, 34%, 67%);
    color: white;
}

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

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(247, 34%, 67%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: white;
}

.service-icon {
    font-size: 3rem;
    color: hsl(247, 34%, 42%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(247, 34%, 67%);
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    color: hsl(247, 34%, 27%);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-price {
    color: hsl(247, 34%, 42%);
    font-size: 1.8rem;
    font-weight: 800;
    text-align: right;
}

.service-conditions {
    background: rgba(247, 34%, 67%, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
    border-left: 5px solid hsl(247, 34%, 67%);
}

.service-conditions h4 {
    color: hsl(247, 34%, 27%);
    margin-bottom: 15px;
}

.service-conditions ul {
    color: #666;
    margin: 0;
}

.service-conditions li {
    margin-bottom: 8px;
}

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

.footer-section {
    background: linear-gradient(135deg, hsl(247, 34%, 27%) 0%, hsl(247, 34%, 42%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
  }
  
  .footer-brand h3 {
    color: hsl(247, 34%, 67%);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
  }
  
  .footer-links a:hover {
    color: hsl(247, 34%, 67%);
    transform: translateX(5px);
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .footer-contact a {
    color: hsl(247, 34%, 67%);
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    color: white;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(247, 34%, 42%) 0%, hsl(247, 34%, 27%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
  }
  
  .cookie-notice.show {
    transform: translateY(0);
  }
  
  .cookie-notice .btn-accept {
    background: hsl(247, 34%, 67%);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(247, 34%, 42%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(247, 34%, 67%);
    color: hsl(247, 34%, 67%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }
  
  .cookie-notice .btn-learn:hover {
    background: hsl(247, 34%, 67%);
    color: white;
    transform: translateY(-2px);
  }