:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,248,1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(137, 46%, 47%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(137, 46%, 47%);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsla(137, 46%, 47%, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

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

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

.content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border-left: 5px solid hsl(137, 46%, 47%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight-text {
    color: hsl(137, 46%, 47%);
    font-weight: 600;
    font-style: italic;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

.advantages-title {
    color: hsl(137, 46%, 32%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.advantages-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: hsl(137, 46%, 47%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.advantages-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(137, 46, 47, 0.15);
    border-color: hsl(137, 46%, 72%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(137, 46%, 32%);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(137, 46%, 72%);
    margin-bottom: 20px;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(137, 46%, 72%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

.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 20px 40px 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;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.privacy-header h1 {
    font-size: 2.8em;
    margin: 0 0 15px 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;
}

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

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

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

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

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

.privacy-section li {
    margin-bottom: 12px;
    position: relative;
}

.privacy-section li::marker {
    color: #667eea;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 2px solid #fdcb6e;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.highlight-box h3 {
    color: #2d3436;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.data-type-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.data-type-card:hover {
    background: #e3f2fd;
    border-color: #667eea;
    transform: translateY(-3px);
}

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

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

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

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

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

.policy-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.policy-section {
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.section-icon {
    width: 24px;
    height: 24px;
    background: #e74c3c;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

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

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

.cookie-type h4 {
    margin: 0 0 10px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #f093fb;
}

.consent-info {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #17a2b8;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #6c5ce7;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
}

@media (max-width: 768px) {
    .cookies-policy {
        padding: 20px 15px;
    }
    
    .policy-title {
        font-size: 2em;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

.contact-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(137, 46%, 72%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.info-title {
    color: hsl(137, 46%, 32%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: hsl(137, 46%, 72%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.working-hours h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.working-hours p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

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

.form-title {
    color: hsl(137, 46%, 32%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(137, 46%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-control:focus {
    border-color: hsl(137, 46%, 47%);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
    background: white;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, hsl(137, 46%, 52%) 0%, hsl(137, 46%, 37%) 100%);
}

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,248,1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(137, 46%, 47%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(137, 46%, 47%);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsla(137, 46%, 47%, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

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

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

.content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border-left: 5px solid hsl(137, 46%, 47%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight-text {
    color: hsl(137, 46%, 47%);
    font-weight: 600;
    font-style: italic;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

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

.services-title {
    color: hsl(137, 46%, 32%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(137, 46%, 47%);
    border-radius: 2px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(137, 46%, 72%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

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

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(137, 46%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    outline: none;
    border-color: hsl(137, 46%, 47%);
    box-shadow: 0 0 0 3px rgba(137, 46%, 47%, 0.1);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, hsl(137, 46%, 52%) 0%, hsl(137, 46%, 37%) 100%);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

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

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

.testimonials-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollUp 60s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid hsl(137, 46%, 72%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    font-size: 1.1rem;
}

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

.quote-icon {
    font-size: 3rem;
    color: hsl(137, 46%, 72%);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
        min-height: 180px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

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

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

.terms-section {
    background: white;
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e74c3c;
}

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

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

.highlight-box {
    background: #fff5f5;
    border: 2px solid #fed7d7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.important-note {
    font-weight: 600;
    color: #d63031;
    font-style: italic;
}

.list-item {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.list-item:before {
    content: "▶";
    color: #e74c3c;
    position: absolute;
    left: 0;
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

.faq-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(137, 46%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: white;
    color: hsl(137, 46%, 32%);
    border-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    background: linear-gradient(45deg, hsl(137, 46%, 47%), hsl(137, 46%, 52%));
    color: white;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: linear-gradient(45deg, hsl(137, 46%, 52%), hsl(137, 46%, 57%));
}

.faq-answer {
    padding: 25px;
    color: hsl(137, 46%, 32%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer strong {
    color: hsl(137, 46%, 25%);
}

.tab-content {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 16px;
        margin: 4px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,248,1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(137, 46%, 47%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(137, 46%, 47%);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsla(137, 46%, 47%, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

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

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

.content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border-left: 5px solid hsl(137, 46%, 47%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight-text {
    color: hsl(137, 46%, 47%);
    font-weight: 600;
    font-style: italic;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(137, 46%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    outline: none;
    border-color: hsl(137, 46%, 47%);
    box-shadow: 0 0 0 3px rgba(137, 46%, 47%, 0.1);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, hsl(137, 46%, 52%) 0%, hsl(137, 46%, 37%) 100%);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}

:root {
            --primary-color: hsl(137, 46%, 47%);
            --secondary-color: hsl(137, 46%, 32%);
            --accent-color: hsl(137, 46%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }
        
        .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, 1%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: 15px;
                border-radius: 15px;
                padding: 20px;
            }
            
            .navbar-nav .nav-link {
                margin: 5px 0;
                text-align: center;
            }
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(90deg) saturate(2);
        }

.hero-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: hsl(137, 46%, 72%);
}

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

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

.benefits-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: hsl(137, 46%, 72%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.cta-buttons {
    margin: 3rem 0;
}

.btn-primary-custom {
    background-color: hsl(137, 46%, 72%);
    border: none;
    color: hsl(137, 46%, 32%);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: white;
    color: hsl(137, 46%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid hsl(137, 46%, 72%);
    color: hsl(137, 46%, 72%);
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: hsl(137, 46%, 72%);
    color: hsl(137, 46%, 32%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-image {
    margin-top: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .benefits-list li {
        justify-content: flex-start;
        text-align: left;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

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

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

.newsletter-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    background: rgba(255,255,255,0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 500px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-bottom: 1.5rem;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid hsl(137, 46%, 72%);
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: white;
}

.email-input:focus {
    outline: none;
    border-color: hsl(137, 46%, 47%);
    box-shadow: 0 0 0 3px rgba(137, 46%, 47%, 0.1);
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    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.3), transparent);
    transition: left 0.5s;
}

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, hsl(137, 46%, 52%) 0%, hsl(137, 46%, 37%) 100%);
}

.privacy-note {
    font-size: 0.9rem;
    color: hsl(137, 46%, 32%);
    text-align: center;
    margin-top: 1rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.faq-subtitle {
    color: hsl(137, 46%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    margin: 0 8px;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: white;
    color: hsl(137, 46%, 32%);
    border-color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-card {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    background: linear-gradient(45deg, hsl(137, 46%, 47%), hsl(137, 46%, 52%));
    color: white;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: linear-gradient(45deg, hsl(137, 46%, 52%), hsl(137, 46%, 57%));
}

.faq-answer {
    padding: 25px;
    color: hsl(137, 46%, 32%);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer strong {
    color: hsl(137, 46%, 25%);
}

.tab-content {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 16px;
        margin: 4px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 20px;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,248,1) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, hsla(137, 46%, 47%, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: hsl(137, 46%, 47%);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.6;
}

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

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, hsla(137, 46%, 47%, 0.1) 0%, transparent 50%);
    z-index: 1;
}

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

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

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

.content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    border-left: 5px solid hsl(137, 46%, 47%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.highlight-text {
    color: hsl(137, 46%, 47%);
    font-weight: 600;
    font-style: italic;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-image {
        margin-bottom: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

.testimonials-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    z-index: 2;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollUp 60s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left: 5px solid hsl(137, 46%, 72%);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: hsl(137, 46%, 32%);
    font-size: 1.1rem;
}

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

.quote-icon {
    font-size: 3rem;
    color: hsl(137, 46%, 72%);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 20px;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
        min-height: 180px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    font-size: 3rem;
    color: hsl(137, 46%, 72%);
    margin-bottom: 20px;
    display: block;
}

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(137, 46%, 72%);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

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

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-subtitle {
    color: hsl(137, 46%, 72%);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    height: 100%;
}

.info-title {
    color: hsl(137, 46%, 32%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.info-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.working-hours {
    background: hsl(137, 46%, 72%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.working-hours h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.working-hours p {
    color: white;
    margin: 0;
    font-size: 0.95rem;
}

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

.form-title {
    color: hsl(137, 46%, 32%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-label {
    color: hsl(137, 46%, 32%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-control:focus {
    border-color: hsl(137, 46%, 47%);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
    background: white;
}

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

.btn-submit {
    background: linear-gradient(135deg, hsl(137, 46%, 47%) 0%, hsl(137, 46%, 32%) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, hsl(137, 46%, 52%) 0%, hsl(137, 46%, 37%) 100%);
}

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

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

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

.services-title {
    color: hsl(137, 46%, 32%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: hsl(137, 46%, 47%);
    border-radius: 2px;
}

.services-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: hsl(137, 46%, 72%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

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

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

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

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.service-conditions {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

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

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

.advantages-title {
    color: hsl(137, 46%, 32%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.advantages-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: hsl(137, 46%, 47%);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.advantages-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.advantage-card {
    background: white;
    border-radius: 15px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(137, 46, 47, 0.15);
    border-color: hsl(137, 46%, 72%);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(137, 46%, 47%), hsl(137, 46%, 72%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

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

.advantage-title {
    color: hsl(137, 46%, 32%);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

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

@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
}

:root {
  --primary-color: hsl(137, 46%, 47%);
  --secondary-color: hsl(137, 46%, 32%);
  --accent-color: hsl(137, 46%, 72%);
}

.footer-bg {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

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

.footer-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-title {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

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

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

.cookie-btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .cookie-notice .btn {
    margin-bottom: 10px;
    width: 100%;
  }
}