:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.about-hero {
    margin-bottom: 60px;
}

.about-title {
    color: hsl(136, 65%, 27%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.about-subtitle {
    color: hsl(136, 65%, 42%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px 0;
}

.content-block h3 {
    color: hsl(136, 65%, 27%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(136, 65%, 42%);
}

.value-item h5 {
    color: hsl(136, 65%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

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

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

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

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

.section-title {
    color: hsl(136, 65%, 27%);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 65%, 67%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
}

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

.advantage-title {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

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

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

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: hsl(136, 65%, 67%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 4s; }

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

.statistics-section {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 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="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="90" 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: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: hsl(136, 65%, 67%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(136, 65%, 42%);
    margin-bottom: 25px;
    display: block;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(136, 65%, 27%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.chart-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(136, 65%, 27%);
    margin-bottom: 30px;
    text-align: center;
}

.progress-bar-custom {
    height: 12px;
    border-radius: 10px;
    background: #e9ecef;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(136, 65%, 42%), hsl(136, 65%, 67%));
    border-radius: 10px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-label {
    font-weight: 600;
    color: hsl(136, 65%, 27%);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.milestone-badge {
    background: linear-gradient(135deg, hsl(136, 65%, 67%), hsl(136, 65%, 42%));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .chart-container {
        padding: 30px 20px;
    }
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

.privacy-policy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.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);
}

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

.privacy-header h1 {
    font-size: 2.8em;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.section-title {
    color: #4a5568;
    font-size: 1.8em;
    font-weight: 600;
    margin: 40px 0 20px 0;
    padding: 15px 0;
    border-bottom: 3px solid #667eea;
    position: relative;
}

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

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

.content-block:hover {
    transform: translateY(-2px);
}

.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 30px;
}

.data-list li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 8px;
}

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

.right-item {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.right-item h4 {
    color: #667eea;
    margin: 0 0 10px 0;
    font-size: 1.1em;
}

.highlight-box {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 5px solid #ff6b6b;
}

.update-date {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #2d3748;
    color: white;
    border-radius: 8px;
    font-style: italic;
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.cookies-policy h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.cookies-policy h3 {
    color: #2980b9;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 500;
}

.cookies-policy p {
    margin-bottom: 15px;
    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);
}

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

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

.cookies-policy li:before {
    content: "🍪";
    position: absolute;
    left: -15px;
}

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

.consent-notice {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cookie-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.cookie-table tr:hover {
    background-color: #f8f9fa;
}

.update-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

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

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

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

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

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

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

.form-label {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(136, 65%, 67%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(136, 65%, 27%);
}

.form-control:focus {
    border-color: hsl(136, 65%, 42%);
    box-shadow: 0 0 0 0.2rem rgba(136, 189, 154, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(136, 65%, 67%);
}

.btn-submit {
    background: linear-gradient(45deg, hsl(136, 65%, 42%), hsl(136, 65%, 27%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(136, 65%, 47%), hsl(136, 65%, 32%));
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(136, 65%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: hsl(136, 65%, 27%);
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-text h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: white;
}

.contact-text p {
    margin: 0;
    opacity: 0.9;
    color: hsl(136, 65%, 87%);
}

.consultation-info {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid hsl(136, 65%, 67%);
}

.consultation-info h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.consultation-info p {
    color: hsl(136, 65%, 87%);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.working-hours h5 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: hsl(136, 65%, 87%);
}

.hours-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.about-hero {
    margin-bottom: 60px;
}

.about-title {
    color: hsl(136, 65%, 27%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.about-subtitle {
    color: hsl(136, 65%, 42%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px 0;
}

.content-block h3 {
    color: hsl(136, 65%, 27%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(136, 65%, 42%);
}

.value-item h5 {
    color: hsl(136, 65%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

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

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.services-section h2 {
    color: hsl(136, 65%, 27%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

.services-section .lead {
    color: #6c757d;
    margin-bottom: 60px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 65%, 67%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-title {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(136, 65%, 42%);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid hsl(136, 65%, 67%);
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #495057;
}

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

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(136, 65%, 67%), hsl(136, 65%, 42%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(136, 204, 154, 0.3);
}

.newsletter-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

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

.newsletter-subtitle {
    color: hsl(136, 65%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefits-list li {
    color: hsl(136, 65%, 30%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(136, 65%, 42%);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(136, 204, 154, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(136, 65%, 42%);
    box-shadow: 0 0 0 3px rgba(136, 204, 154, 0.1);
    background: white;
}

.form-control::placeholder {
    color: rgba(136, 204, 154, 0.6);
    font-weight: 300;
}

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

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

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(136, 65%, 47%), hsl(136, 65%, 32%));
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(136, 204, 154, 0.4);
}

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(136, 204, 154, 0.8);
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-control, .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

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

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

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

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

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

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

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid hsl(136, 65%, 67%);
}

.author-info h5 {
    margin: 0;
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info small {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-left: auto;
}

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

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

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

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

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

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

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

.important-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.list-item {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(136, 65%, 97%) 0%, hsl(136, 65%, 94%) 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(136, 65%, 27%);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(136, 65%, 42%);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion {
    --bs-accordion-border-color: hsl(136, 65%, 67%);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem hsla(136, 65%, 42%, 0.25);
}

.accordion-item {
    border: 2px solid hsl(136, 65%, 67%);
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.accordion-button {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 47%) 100%) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 24px;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(136, 65%, 27%) 0%, hsl(136, 65%, 32%) 100%) !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem hsla(136, 65%, 42%, 0.25) !important;
}

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

.accordion-button:not(.collapsed)::after {
    transform: scale(1.2) rotate(180deg);
}

.accordion-body {
    background: white;
    padding: 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(136, 65%, 27%);
    border-top: 1px solid hsl(136, 65%, 67%);
}

.accordion-body strong {
    color: hsl(136, 65%, 42%);
    font-weight: 600;
}

.accordion-body ul {
    margin: 12px 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: hsl(136, 65%, 35%);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 1.9rem;
    }
    
    .accordion-button {
        padding: 14px 16px;
    }
    
    .accordion-body {
        padding: 16px;
    }
}

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

.about-hero {
    margin-bottom: 60px;
}

.about-title {
    color: hsl(136, 65%, 27%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.about-subtitle {
    color: hsl(136, 65%, 42%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px 0;
}

.content-block h3 {
    color: hsl(136, 65%, 27%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(136, 65%, 42%);
}

.value-item h5 {
    color: hsl(136, 65%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(136, 65%, 67%), hsl(136, 65%, 42%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(136, 204, 154, 0.3);
}

.newsletter-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

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

.newsletter-subtitle {
    color: hsl(136, 65%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefits-list li {
    color: hsl(136, 65%, 30%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(136, 65%, 42%);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(136, 204, 154, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(136, 65%, 42%);
    box-shadow: 0 0 0 3px rgba(136, 204, 154, 0.1);
    background: white;
}

.form-control::placeholder {
    color: rgba(136, 204, 154, 0.6);
    font-weight: 300;
}

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

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

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(136, 65%, 47%), hsl(136, 65%, 32%));
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(136, 204, 154, 0.4);
}

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(136, 204, 154, 0.8);
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-control, .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

:root {
            --primary-color: hsl(136, 65%, 42%);
            --secondary-color: hsl(136, 65%, 27%);
            --accent-color: hsl(136, 65%, 67%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            color: white;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: var(--secondary-color);
                margin-top: 1rem;
                padding: 1rem;
                border-radius: 10px;
            }
        }

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
}

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

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: hsl(136, 65%, 67%);
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-features {
    margin-bottom: 3rem;
}

.hero-features li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.hero-features li i {
    color: hsl(136, 65%, 67%);
    margin-right: 12px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: hsl(136, 65%, 67%);
    color: hsl(136, 65%, 27%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    background: white;
    color: hsl(136, 65%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid hsl(136, 65%, 67%);
    padding: 13px 33px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: hsl(136, 65%, 67%);
    color: hsl(136, 65%, 27%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

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

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

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

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

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

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

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

.form-label {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid hsl(136, 65%, 67%);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(136, 65%, 27%);
}

.form-control:focus {
    border-color: hsl(136, 65%, 42%);
    box-shadow: 0 0 0 0.2rem rgba(136, 189, 154, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: hsl(136, 65%, 67%);
}

.btn-submit {
    background: linear-gradient(45deg, hsl(136, 65%, 42%), hsl(136, 65%, 27%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(136, 65%, 47%), hsl(136, 65%, 32%));
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: hsl(136, 65%, 67%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: hsl(136, 65%, 27%);
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-text h5 {
    margin: 0 0 5px 0;
    font-weight: 600;
    color: white;
}

.contact-text p {
    margin: 0;
    opacity: 0.9;
    color: hsl(136, 65%, 87%);
}

.consultation-info {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid hsl(136, 65%, 67%);
}

.consultation-info h4 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.consultation-info p {
    color: hsl(136, 65%, 87%);
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.working-hours h5 {
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: hsl(136, 65%, 87%);
}

.hours-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.services-section h2 {
    color: hsl(136, 65%, 27%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

.services-section .lead {
    color: #6c757d;
    margin-bottom: 60px;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 65%, 67%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 27%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-title {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.service-price {
    color: hsl(136, 65%, 42%);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-conditions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid hsl(136, 65%, 67%);
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #495057;
}

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

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 25px;
    }
}

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

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

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

.section-title {
    color: hsl(136, 65%, 27%);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(136, 65%, 67%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
}

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

.advantage-title {
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

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

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

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: hsl(136, 65%, 67%);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.floating-element:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 4s; }

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

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

.about-hero {
    margin-bottom: 60px;
}

.about-title {
    color: hsl(136, 65%, 27%);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.about-subtitle {
    color: hsl(136, 65%, 42%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
}

.content-block {
    margin-bottom: 50px;
    padding: 40px 0;
}

.content-block h3 {
    color: hsl(136, 65%, 27%);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(136, 65%, 67%) 0%, hsl(136, 65%, 42%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.value-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid hsl(136, 65%, 42%);
}

.value-item h5 {
    color: hsl(136, 65%, 27%);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.value-item p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 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="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="90" 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: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.stat-card:hover {
    transform: translateY(-10px);
    border-color: hsl(136, 65%, 67%);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3.5rem;
    color: hsl(136, 65%, 42%);
    margin-bottom: 25px;
    display: block;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(136, 65%, 27%);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.chart-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(136, 65%, 27%);
    margin-bottom: 30px;
    text-align: center;
}

.progress-bar-custom {
    height: 12px;
    border-radius: 10px;
    background: #e9ecef;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(136, 65%, 42%), hsl(136, 65%, 67%));
    border-radius: 10px;
    transition: width 2s ease-in-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.progress-label {
    font-weight: 600;
    color: hsl(136, 65%, 27%);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.milestone-badge {
    background: linear-gradient(135deg, hsl(136, 65%, 67%), hsl(136, 65%, 42%));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .chart-container {
        padding: 30px 20px;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(136, 65%, 97%) 0%, hsl(136, 65%, 94%) 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(136, 65%, 27%);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-subtitle {
    font-size: 1.2rem;
    color: hsl(136, 65%, 42%);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.accordion {
    --bs-accordion-border-color: hsl(136, 65%, 67%);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem hsla(136, 65%, 42%, 0.25);
}

.accordion-item {
    border: 2px solid hsl(136, 65%, 67%);
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.accordion-button {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 47%) 100%) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 24px;
    border: none !important;
    position: relative;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, hsl(136, 65%, 27%) 0%, hsl(136, 65%, 32%) 100%) !important;
    color: white !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem hsla(136, 65%, 42%, 0.25) !important;
}

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

.accordion-button:not(.collapsed)::after {
    transform: scale(1.2) rotate(180deg);
}

.accordion-body {
    background: white;
    padding: 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: hsl(136, 65%, 27%);
    border-top: 1px solid hsl(136, 65%, 67%);
}

.accordion-body strong {
    color: hsl(136, 65%, 42%);
    font-weight: 600;
}

.accordion-body ul {
    margin: 12px 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: hsl(136, 65%, 35%);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 16px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-title {
        font-size: 1.9rem;
    }
    
    .accordion-button {
        padding: 14px 16px;
    }
    
    .accordion-body {
        padding: 16px;
    }
}

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

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

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

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

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

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

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

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid hsl(136, 65%, 67%);
}

.author-info h5 {
    margin: 0;
    color: hsl(136, 65%, 27%);
    font-weight: 600;
    font-size: 1.1rem;
}

.author-info small {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-left: auto;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(136, 65%, 42%) 0%, hsl(136, 65%, 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="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    animation: float 20s linear infinite;
}

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

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

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(136, 65%, 67%), hsl(136, 65%, 42%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(136, 204, 154, 0.3);
}

.newsletter-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

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

.newsletter-subtitle {
    color: hsl(136, 65%, 35%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

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

.benefits-list li {
    color: hsl(136, 65%, 30%);
    font-size: 1rem;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: hsl(136, 65%, 42%);
    font-weight: bold;
    font-size: 1.2rem;
}

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

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

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(136, 204, 154, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: hsl(136, 65%, 42%);
    box-shadow: 0 0 0 3px rgba(136, 204, 154, 0.1);
    background: white;
}

.form-control::placeholder {
    color: rgba(136, 204, 154, 0.6);
    font-weight: 300;
}

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

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

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

.subscribe-btn:hover {
    background: linear-gradient(135deg, hsl(136, 65%, 47%), hsl(136, 65%, 32%));
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(136, 204, 154, 0.4);
}

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

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(136, 204, 154, 0.8);
    margin-top: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .form-control, .subscribe-btn {
        padding: 15px 20px;
        font-size: 1rem;
    }
}

:root {
    --primary-color: hsl(136, 65%, 42%);
    --secondary-color: hsl(136, 65%, 27%);
    --accent-color: hsl(136, 65%, 67%);
  }

  footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
  }

  footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
  }

  footer p, footer li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: var(--accent-color);
  }

  footer .contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
  }

  footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }

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

  .cookie-notice .btn-accept {
    background-color: var(--accent-color);
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-accept:hover {
    background-color: white;
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    footer {
      text-align: center;
    }
    
    .cookie-notice .btn-group {
      flex-direction: column;
      gap: 0.5rem;
    }
  }