:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(143, 67%, 49%);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.story-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

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

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 3px solid hsl(143, 67%, 74%);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: hsl(143, 67%, 49%);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
}

.mission-text {
    color: #666;
    line-height: 1.6;
}

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

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

.quote-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 74%) 50%, hsl(143, 67%, 49%) 100%);
}

.section-title {
    color: hsl(143, 67%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(143, 67%, 49%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    transition: left 0.4s ease;
}

.advantage-card:hover::before {
    left: 0;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(143, 67%, 74%);
}

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

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

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

.advantage-title {
    color: hsl(143, 67%, 34%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

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

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(143, 188, 143, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

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

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

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

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

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

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

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

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

.stat-circle {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(143, 67%, 74%), transparent, hsl(143, 67%, 74%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(143, 67%, 74%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    max-width: 180px;
}

.stats-bottom-text {
    text-align: center;
    margin-top: 80px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-circle {
        width: 250px;
        height: 250px;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

.privacy-header h1 {
    font-size: 2.8em;
    margin: 0 0 15px 0;
    font-weight: 300;
    letter-spacing: 2px;
}

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

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

.privacy-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.privacy-section h2 {
    color: #667eea;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f4;
    font-weight: 400;
}

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

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

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

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

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e17055;
}

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

.rights-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

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

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

.policy-header h1 {
    font-size: 2.5em;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.policy-header p {
    font-size: 1.1em;
    margin: 15px 0 0 0;
    opacity: 0.9;
}

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

.policy-section:hover {
    transform: translateY(-3px);
}

.policy-section h2 {
    color: #667eea;
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 10px;
}

.policy-section h3 {
    color: #495057;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

.cookie-type {
    background: #f8f9fa;
    padding: 20px;
    margin: 15px 0;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

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

.highlight-box {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid #fdcb6e;
}

.consent-notice {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    color: #495057;
}

strong {
    color: #2d3436;
    font-weight: 600;
}

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

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, hsl(143, 67%, 74%) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

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

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

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

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(143, 167, 149, 0.2);
}

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

.form-label {
    color: hsl(143, 67%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(143, 67%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(143, 167, 149, 0.25);
    background-color: white;
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 167, 149, 0.4);
    background: linear-gradient(135deg, hsl(143, 67%, 34%) 0%, hsl(143, 67%, 49%) 100%);
}

.contact-info {
    padding: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid hsl(143, 67%, 49%);
}

.info-title {
    color: hsl(143, 67%, 34%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.working-hours {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-text {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(143, 67%, 49%);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.story-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

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

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 3px solid hsl(143, 67%, 74%);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: hsl(143, 67%, 49%);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
}

.mission-text {
    color: #666;
    line-height: 1.6;
}

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

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

.quote-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.section-title {
    color: hsl(143, 67%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

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

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

.service-title {
    color: hsl(143, 67%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(143, 67%, 74%) 0%, hsl(143, 67%, 49%) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

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

.service-features li {
    color: #6c757d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: hsl(143, 67%, 49%);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C6,2 2,6 6,10 C2,6 6,14 10,10 C14,14 18,6 14,10 C18,6 14,2 10,6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 3px solid hsl(143, 67%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.email-input:focus {
    border-color: hsl(143, 67%, 49%);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-style: italic;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    width: 100%;
    margin-top: 20px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    background: linear-gradient(45deg, hsl(143, 67%, 54%), hsl(143, 67%, 39%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

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

.testimonials-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 4,3 C1,1 -2,3 -2,6 C-2,10 10,18 10,18 C10,18 22,10 22,6 C22,3 19,1 16,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
}

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

.testimonial-card:nth-child(3n+1) {
    grid-row: span 1;
}

.testimonial-card:nth-child(3n+2) {
    grid-row: span 2;
}

.testimonial-card:nth-child(3n) {
    grid-row: span 1;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(143, 67%, 74%);
    margin-bottom: 20px;
    opacity: 0.7;
}

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

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

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:nth-child(n) {
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

.terms-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: -1px;
    border-bottom: 3px solid #e91e63;
    padding-bottom: 20px;
}

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

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

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

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

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid #f39c12;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

.faq-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: hsl(143, 67%, 74%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(143, 67%, 34%);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    padding: 0 25px 25px;
    line-height: 1.7;
    opacity: 0.9;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 0.9; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
}

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

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(143, 67%, 49%);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.story-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

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

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 3px solid hsl(143, 67%, 74%);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: hsl(143, 67%, 49%);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
}

.mission-text {
    color: #666;
    line-height: 1.6;
}

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

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

.quote-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C6,2 2,6 6,10 C2,6 6,14 10,10 C14,14 18,6 14,10 C18,6 14,2 10,6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 3px solid hsl(143, 67%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.email-input:focus {
    border-color: hsl(143, 67%, 49%);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-style: italic;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    width: 100%;
    margin-top: 20px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    background: linear-gradient(45deg, hsl(143, 67%, 54%), hsl(143, 67%, 39%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

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

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }

:root {
            --primary-color: hsl(143, 67%, 49%);
            --secondary-color: hsl(143, 67%, 34%);
            --accent-color: hsl(143, 67%, 74%);
        }
        
        .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-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem 0.75rem;
        }
        
        .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, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
            transition: transform 0.3s ease;
        }
        
        .logo-svg:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.1);
                backdrop-filter: blur(10px);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }
        }

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

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(143, 67%, 74%);
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.hero-features li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-features li i {
    color: hsl(143, 67%, 74%);
    margin-right: 15px;
    font-size: 1.3rem;
}

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

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

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

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

.btn-primary-custom {
    background: white;
    color: hsl(143, 67%, 34%);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-custom:hover {
    background: hsl(143, 67%, 74%);
    color: hsl(143, 67%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-secondary-custom {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-secondary-custom:hover {
    background: white;
    color: hsl(143, 67%, 34%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-image img {
        transform: none;
        margin-top: 2rem;
    }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, hsl(143, 67%, 74%) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

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

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

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

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(143, 167, 149, 0.2);
}

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

.form-label {
    color: hsl(143, 67%, 34%);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(143, 67%, 49%);
    box-shadow: 0 0 0 0.2rem rgba(143, 167, 149, 0.25);
    background-color: white;
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(143, 167, 149, 0.4);
    background: linear-gradient(135deg, hsl(143, 67%, 34%) 0%, hsl(143, 67%, 49%) 100%);
}

.contact-info {
    padding: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid hsl(143, 67%, 49%);
}

.info-title {
    color: hsl(143, 67%, 34%);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.working-hours {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.hours-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hours-text {
    font-size: 1rem;
    opacity: 0.9;
}

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

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

.section-title {
    color: hsl(143, 67%, 34%);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

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

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

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

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

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

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

.service-title {
    color: hsl(143, 67%, 34%);
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    text-align: center;
}

.service-price {
    background: linear-gradient(135deg, hsl(143, 67%, 74%) 0%, hsl(143, 67%, 49%) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

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

.service-features li {
    color: #6c757d;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    color: hsl(143, 67%, 49%);
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

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

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

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

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

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

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

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

.stat-circle {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-circle:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.stat-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, hsl(143, 67%, 74%), transparent, hsl(143, 67%, 74%));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(143, 67%, 74%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stat-circle:hover .stat-icon {
    color: white;
    transform: scale(1.1);
}

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

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    max-width: 180px;
}

.stats-bottom-text {
    text-align: center;
    margin-top: 80px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-circle {
        width: 250px;
        height: 250px;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

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

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 74%) 50%, hsl(143, 67%, 49%) 100%);
}

.section-title {
    color: hsl(143, 67%, 34%);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: hsl(143, 67%, 49%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    transition: left 0.4s ease;
}

.advantage-card:hover::before {
    left: 0;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: hsl(143, 67%, 74%);
}

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

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

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

.advantage-title {
    color: hsl(143, 67%, 34%);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

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

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

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(143, 188, 143, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

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

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

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

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

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

.faq-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: hsl(143, 67%, 74%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(143, 67%, 34%);
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    padding: 0 25px 25px;
    line-height: 1.7;
    opacity: 0.9;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 0.9; transform: translateY(0); }
}

@media (max-width: 768px) {
    .faq-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,3 7,1 4,3 C1,1 -2,3 -2,6 C-2,10 10,18 10,18 C10,18 22,10 22,6 C22,3 19,1 16,3 C13,1 10,3 10,6 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

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

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
}

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

.testimonial-card:nth-child(3n+1) {
    grid-row: span 1;
}

.testimonial-card:nth-child(3n+2) {
    grid-row: span 2;
}

.testimonial-card:nth-child(3n) {
    grid-row: span 1;
}

.quote-icon {
    font-size: 3rem;
    color: hsl(143, 67%, 74%);
    margin-bottom: 20px;
    opacity: 0.7;
}

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

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

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card:nth-child(n) {
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(143, 67%, 49%) 0%, hsl(143, 67%, 34%) 100%);
    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="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C6,2 2,6 6,10 C2,6 6,14 10,10 C14,14 18,6 14,10 C18,6 14,2 10,6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>') repeat;
    opacity: 0.1;
}

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.benefits-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.1rem;
    position: relative;
    padding-left: 30px;
}

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

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

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

.email-input {
    width: 100%;
    padding: 18px 25px;
    border: 3px solid hsl(143, 67%, 74%);
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
}

.email-input:focus {
    border-color: hsl(143, 67%, 49%);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
    transform: translateY(-2px);
}

.email-input::placeholder {
    color: #999;
    font-style: italic;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    width: 100%;
    margin-top: 20px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.6);
    background: linear-gradient(45deg, hsl(143, 67%, 54%), hsl(143, 67%, 39%));
}

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

.privacy-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 20px;
    font-style: italic;
}

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

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

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

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

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

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

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(143, 67%, 34%);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 2px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid hsl(143, 67%, 49%);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.story-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.story-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

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

.mission-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 3px solid hsl(143, 67%, 74%);
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-top-color: hsl(143, 67%, 49%);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 74%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.mission-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(143, 67%, 34%);
    margin-bottom: 1rem;
}

.mission-text {
    color: #666;
    line-height: 1.6;
}

.about-secondary-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

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

.quote-section {
    background: linear-gradient(135deg, hsl(143, 67%, 49%), hsl(143, 67%, 34%));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    opacity: 0.2;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

:root {
    --primary: hsl(143, 67%, 49%);
    --secondary: hsl(143, 67%, 34%);
    --accent: hsl(143, 67%, 74%);
  }

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

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

  .footer-link:hover {
    color: var(--accent);
    text-decoration: underline;
  }

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

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 2rem 0 1rem 0;
  }

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

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

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

  .cookie-btn:hover {
    background: white;
    border-color: white;
    color: var(--secondary);
    transform: translateY(-2px);
  }

  .cookie-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
  }

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

  .phone-link:hover {
    color: var(--accent);
  }