:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

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

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.highlight-text {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .about-image {
        height: 250px;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(52,152,219,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(187, 65%, 32%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
    border-color: hsl(187, 65%, 72%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

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

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(187, 65%, 32%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.zigzag-left {
    text-align: left;
}

.zigzag-right {
    text-align: right;
}

.zigzag-right .advantage-icon {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        text-align: center !important;
        padding: 30px 20px;
    }
    
    .zigzag-right .advantage-icon {
        margin: 0 auto 25px auto;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(187, 65%, 72%) var(--progress, 75%), rgba(255,255,255,0.2) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateIn 1s ease-out;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: hsl(187, 65%, 32%);
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

@keyframes rotateIn {
    from { transform: rotate(-90deg) scale(0.8); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
}

.stat-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(187, 65%, 72%);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    line-height: 1.4;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

.stat-item {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

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

.stat-item:hover .circle-progress {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.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, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-policy p {
    margin-bottom: 20px;
    text-align: justify;
    font-size: 1.1rem;
}

.privacy-policy ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-policy li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    position: relative;
}

.privacy-policy li::marker {
    color: #3498db;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #2196f3;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #666;
    background: #f1f3f4;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
    margin: 40px 0;
    border: none;
}

.privacy-policy strong {
    color: #2c3e50;
    font-weight: 600;
}

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.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: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    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 #007bff;
}

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

.policy-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 300;
    margin-bottom: 10px;
}

.last-updated {
    background: #007bff;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #007bff;
    background: rgba(0,123,255,0.05);
    padding: 15px 15px 15px 25px;
    border-radius: 8px;
}

.content-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
    color: #495057;
}

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

.cookie-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cookie-card h4 {
    color: #007bff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

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

.control-list {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 25px 0;
}

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

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

.control-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.gdpr-notice {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 20px rgba(40,167,69,0.3);
}

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

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

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: hsl(187, 65%, 72%);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info {
    color: white;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: hsl(187, 65%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: hsl(187, 65%, 32%);
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(187, 65%, 72%);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(187, 65%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(187, 65%, 47%);
    box-shadow: 0 0 0 3px rgba(67, 178, 185, 0.1);
    transform: translateY(-2px);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(67, 178, 185, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 178, 185, 0.4);
    background: linear-gradient(135deg, hsl(187, 65%, 52%) 0%, hsl(187, 65%, 37%) 100%);
}

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

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

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

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.hours-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

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

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.highlight-text {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .about-image {
        height: 250px;
    }
}

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.services-title {
    color: hsl(187, 65%, 32%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-subtitle {
    color: hsl(187, 65%, 47%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    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(187, 65%, 47%), hsl(187, 65%, 72%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: hsl(187, 65%, 72%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(187, 65%, 47%);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: hsl(187, 65%, 32%);
    transform: scale(1.1);
}

.service-title {
    color: hsl(187, 65%, 32%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.service-price {
    color: hsl(187, 65%, 47%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(187, 65%, 47%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(187, 65%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(187, 65%, 72%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(187, 65%, 72%), hsl(187, 65%, 62%));
    color: hsl(187, 65%, 32%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, hsl(187, 65%, 82%), hsl(187, 65%, 72%));
}

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

.newsletter-benefits {
    margin-top: 30px;
    text-align: center;
}

.benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    color: hsl(187, 65%, 72%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    background: hsl(187, 65%, 72%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(187, 65%, 32%);
    font-size: 10px;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(187, 65%, 47%), hsl(187, 65%, 72%));
}

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

.quote-icon {
    color: hsl(187, 65%, 47%);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

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

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

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

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.section-title {
    color: #2980b9;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 8px;
}

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

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

.important-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    font-weight: 500;
    text-align: center;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

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

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

.accordion-button:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}

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

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

.accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.2);
    color: hsl(187, 65%, 72%);
}

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

.highlight {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

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

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.highlight-text {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .about-image {
        height: 250px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(187, 65%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(187, 65%, 72%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(187, 65%, 72%), hsl(187, 65%, 62%));
    color: hsl(187, 65%, 32%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, hsl(187, 65%, 82%), hsl(187, 65%, 72%));
}

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

.newsletter-benefits {
    margin-top: 30px;
    text-align: center;
}

.benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    color: hsl(187, 65%, 72%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    background: hsl(187, 65%, 72%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(187, 65%, 32%);
    font-size: 10px;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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

:root {
            --primary-color: hsl(187, 65%, 47%);
            --secondary-color: hsl(187, 65%, 32%);
            --accent-color: hsl(187, 65%, 72%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            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;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            padding: 4px 8px;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }
        
        .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");
        }
        
        .logo-img {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(180deg);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                margin: 4px 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

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

.hero-subtitle {
    font-size: 1.5rem;
    color: hsl(187, 65%, 72%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

.hero-image:hover {
    transform: translateY(-10px);
}

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

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

.benefits-list li i {
    color: hsl(187, 65%, 72%);
    margin-right: 15px;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary-custom {
    background: hsl(187, 65%, 72%);
    border: none;
    color: hsl(187, 65%, 32%);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(187, 65%, 32%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(187, 65%, 72%);
    color: hsl(187, 65%, 72%);
    padding: 13px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: hsl(187, 65%, 72%);
    color: hsl(187, 65%, 32%);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        width: 100%;
    }
}

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

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.floating-elements::after {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation-delay: -4s;
}

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: hsl(187, 65%, 72%);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info {
    color: white;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: hsl(187, 65%, 72%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: hsl(187, 65%, 32%);
}

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(187, 65%, 72%);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(187, 65%, 32%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(187, 65%, 47%);
    box-shadow: 0 0 0 3px rgba(67, 178, 185, 0.1);
    transform: translateY(-2px);
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 32%) 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(67, 178, 185, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(67, 178, 185, 0.4);
    background: linear-gradient(135deg, hsl(187, 65%, 52%) 0%, hsl(187, 65%, 37%) 100%);
}

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

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

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

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.hours-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

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

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

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

.block-title {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    margin-bottom: 1.5rem;
    text-align: center;
}

.block-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0.95;
}

.highlight-text {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .block-title {
        font-size: 1.5rem;
    }
    
    .about-image {
        height: 250px;
    }
}

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

.services-title {
    color: hsl(187, 65%, 32%);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-subtitle {
    color: hsl(187, 65%, 47%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    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(187, 65%, 47%), hsl(187, 65%, 72%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: hsl(187, 65%, 72%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(187, 65%, 47%);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: hsl(187, 65%, 32%);
    transform: scale(1.1);
}

.service-title {
    color: hsl(187, 65%, 32%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.service-price {
    color: hsl(187, 65%, 47%);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.service-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(187, 65%, 47%);
    font-weight: bold;
}

@media (max-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.06)"/><circle cx="70" cy="80" r="2.5" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, white, hsl(187, 65%, 72%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.stat-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.circle-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(hsl(187, 65%, 72%) var(--progress, 75%), rgba(255,255,255,0.2) 0);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateIn 1s ease-out;
}

.circle-progress::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    background: hsl(187, 65%, 32%);
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}

@keyframes rotateIn {
    from { transform: rotate(-90deg) scale(0.8); opacity: 0; }
    to { transform: rotate(0deg) scale(1); opacity: 1; }
}

.stat-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-icon {
    font-size: 1.5rem;
    color: hsl(187, 65%, 72%);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(187, 65%, 72%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1rem;
    line-height: 1.4;
}

.stats-grid {
    position: relative;
    z-index: 1;
}

.stat-item {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

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

.stat-item:hover .circle-progress {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.newsletter-subtitle {
    color: hsl(187, 65%, 72%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    border-color: hsl(187, 65%, 72%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, hsl(187, 65%, 72%), hsl(187, 65%, 62%));
    color: hsl(187, 65%, 32%);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.newsletter-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, hsl(187, 65%, 82%), hsl(187, 65%, 72%));
}

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

.newsletter-benefits {
    margin-top: 30px;
    text-align: center;
}

.benefits-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    color: hsl(187, 65%, 72%);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    background: hsl(187, 65%, 72%);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.benefit-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: hsl(187, 65%, 32%);
    font-size: 10px;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .benefits-list {
        flex-direction: column;
        align-items: center;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(187, 65%, 47%) 0%, hsl(187, 65%, 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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(187, 65%, 47%), hsl(187, 65%, 72%));
}

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

.quote-icon {
    color: hsl(187, 65%, 47%);
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.testimonial-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

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

.client-location {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

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

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

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

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

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(52,152,219,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(187, 65%, 32%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
    border-color: hsl(187, 65%, 72%);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

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

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(187, 65%, 32%);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.zigzag-left {
    text-align: left;
}

.zigzag-right {
    text-align: right;
}

.zigzag-right .advantage-icon {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .advantage-card {
        text-align: center !important;
        padding: 30px 20px;
    }
    
    .zigzag-right .advantage-icon {
        margin: 0 auto 25px auto;
    }
    
    .advantages-section {
        padding: 60px 0;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(52, 152, 219, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

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

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

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

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

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

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

.accordion-button:focus {
    box-shadow: none;
    background: rgba(255,255,255,0.1);
}

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

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

.accordion-button:not(.collapsed) {
    background: rgba(255,255,255,0.2);
    color: hsl(187, 65%, 72%);
}

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

.highlight {
    color: hsl(187, 65%, 72%);
    font-weight: 600;
}

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

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

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

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

  footer p, footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.6;
  }

  footer a:hover {
    color: var(--accent-color);
    transition: color 0.3s ease;
  }

  footer .contact-info {
    margin-bottom: 1rem;
  }

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

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

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

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

  .cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
  }

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

  .cookie-notice .btn-accept {
    background: var(--primary-color);
    border: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

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

  .cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-notice .btn-learn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
  }

  .cookie-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
  }

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