:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(123, 47%, 63%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(123, 47%, 63%);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mission-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.mission-box h4 {
    font-size: 1.8rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 1.4rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(123, 47%, 63%);
    box-shadow: 0 15px 40px rgba(123, 200, 100, 0.3);
}

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

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

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

.advantage-title {
    color: hsl(123, 47%, 23%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .advantage-card {
        padding: 25px 20px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(123, 47%, 83%);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(123, 47%, 83%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-header h1 {
    color: #34495e;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.privacy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    font-style: italic;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
    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: #2980b9;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

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

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

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

.privacy-list li {
    margin-bottom: 8px;
    position: relative;
}

.privacy-list li::before {
    content: "🐕";
    position: absolute;
    left: -25px;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.date-updated {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-header h1 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section-title {
    color: #34495e;
    font-size: 1.8em;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
}

.section-title:first-child {
    margin-top: 0;
}

.cookie-type {
    background: #ecf0f1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.cookie-type h4 {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.highlight-box h3 {
    margin-top: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.consent-notice {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.consent-notice h4 {
    color: #27ae60;
    margin-top: 0;
    font-weight: 600;
}

ul {
    padding-left: 25px;
}

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

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    color: #856404;
}

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

.data-table th {
    background: #3498db;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

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

.data-table tr:nth-child(even) {
    background: #f8f9fa;
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form h3 {
    color: hsl(123, 47%, 23%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-control {
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(123, 47%, 23%);
}

.form-control:focus {
    border-color: hsl(123, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(123, 147, 138, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: hsl(123, 47%, 23%);
    margin-bottom: 8px;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(123, 47%, 38%), hsl(123, 47%, 63%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(123, 47%, 23%), hsl(123, 47%, 38%));
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h4 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.working-hours h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(123, 47%, 63%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(123, 47%, 63%);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mission-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.mission-box h4 {
    font-size: 1.8rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 1.4rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 47%, 63%);
    border-color: hsl(123, 47%, 63%);
    color: white;
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: hsl(123, 47%, 23%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: hsl(123, 47%, 63%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(123, 47%, 38%);
    transform: scale(1.1);
}

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

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

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

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

.service-conditions {
    background: rgba(123, 47, 38, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(123, 47%, 38%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: hsl(123, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(123, 147, 138, 0.25);
    background: white;
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 147, 138, 0.4);
    background: linear-gradient(135deg, hsl(123, 47%, 43%) 0%, hsl(123, 47%, 28%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(123, 47%, 38%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

@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 {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

.client-info {
    border-top: 2px solid hsl(123, 47%, 63%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(123, 47%, 23%);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-location {
    color: hsl(123, 47%, 38%);
    font-size: 0.9rem;
    font-weight: 500;
}

.paw-decoration {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    background: hsl(123, 47%, 63%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.paw-decoration::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    top: -5px;
    left: 2px;
}

.paw-decoration::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    top: -5px;
    right: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

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

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

.section-title {
    font-size: 1.4em;
    color: #2980b9;
    margin: 30px 0 15px 0;
    padding: 10px 0;
    border-left: 4px solid #3498db;
    padding-left: 15px;
    background: rgba(52, 152, 219, 0.1);
}

.terms-text {
    margin-bottom: 20px;
    text-align: justify;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.highlight-box {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    margin: 10px 0;
    padding: 8px 0 8px 25px;
    position: relative;
}

.terms-list li:before {
    content: "🐕";
    position: absolute;
    left: 0;
    top: 8px;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: rgba(127, 140, 141, 0.1);
    border-radius: 5px;
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

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

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

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.faq-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid hsl(123, 47%, 63%);
    color: white;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(123, 47%, 63%);
    color: hsl(123, 47%, 23%);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 47%, 63%);
    color: hsl(123, 47%, 23%);
    border-color: hsl(123, 47%, 63%);
}

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

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

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

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

.faq-question h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: bold;
    color: hsl(123, 47%, 63%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question h5 {
        font-size: 1.1rem;
    }
}

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(123, 47%, 63%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(123, 47%, 63%);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mission-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.mission-box h4 {
    font-size: 1.8rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 1.4rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(123, 47%, 38%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: hsl(123, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(123, 147, 138, 0.25);
    background: white;
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 147, 138, 0.4);
    background: linear-gradient(135deg, hsl(123, 47%, 43%) 0%, hsl(123, 47%, 28%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(123, 47%, 38%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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

:root {
            --primary-color: hsl(123, 47%, 38%);
            --secondary-color: hsl(123, 47%, 23%);
            --accent-color: hsl(123, 47%, 63%);
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--accent-color);
            color: var(--secondary-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem 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-img {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover .logo-img {
            transform: rotate(5deg) scale(1.05);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 15px;
                padding: 1rem;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--primary-color);
                color: white !important;
            }
        }

.hero-section {
    min-height: 80vh;
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(123, 47%, 83%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    border: 3px solid hsl(123, 47%, 63%);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2.5rem;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-list li i {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.8rem;
}

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

.btn-primary-custom {
    background: hsl(123, 47%, 63%);
    border: 2px solid hsl(123, 47%, 63%);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: transparent;
    color: hsl(123, 47%, 63%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary-custom:hover {
    background: white;
    color: hsl(123, 47%, 38%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@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: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 250px;
        text-align: center;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.services-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 47%, 63%);
    border-color: hsl(123, 47%, 63%);
    color: white;
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    color: hsl(123, 47%, 23%);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: hsl(123, 47%, 63%);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: hsl(123, 47%, 38%);
    transform: scale(1.1);
}

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

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

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

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

.service-conditions {
    background: rgba(123, 47, 38, 0.1);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #555;
}

.tab-content {
    min-height: 600px;
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

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

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

.faq-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.faq-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-tabs {
    margin-bottom: 40px;
}

.nav-tabs {
    border: none;
    justify-content: center;
}

.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid hsl(123, 47%, 63%);
    color: white;
    margin: 0 10px;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: hsl(123, 47%, 63%);
    color: hsl(123, 47%, 23%);
    transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
    background: hsl(123, 47%, 63%);
    color: hsl(123, 47%, 23%);
    border-color: hsl(123, 47%, 63%);
}

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

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

.faq-question {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

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

.faq-question h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    padding-right: 30px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: bold;
    color: hsl(123, 47%, 63%);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 25px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        margin: 5px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question h5 {
        font-size: 1.1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-item:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(123, 47%, 83%);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

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

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

.stat-label {
    font-size: 1.1rem;
    color: hsl(123, 47%, 83%);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-icon {
        font-size: 3rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.newsletter-subtitle {
    color: hsl(123, 47%, 38%);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

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

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

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

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

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

.form-control {
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: hsl(123, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(123, 147, 138, 0.25);
    background: white;
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(123, 147, 138, 0.4);
    background: linear-gradient(135deg, hsl(123, 47%, 43%) 0%, hsl(123, 47%, 28%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(123, 47%, 38%);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

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

.contact-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    color: white;
}

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

.contact-form h3 {
    color: hsl(123, 47%, 23%);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2rem;
}

.form-control {
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 10px;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background: white;
    color: hsl(123, 47%, 23%);
}

.form-control:focus {
    border-color: hsl(123, 47%, 38%);
    box-shadow: 0 0 0 0.2rem rgba(123, 147, 138, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: hsl(123, 47%, 23%);
    margin-bottom: 8px;
    font-size: 16px;
}

.submit-btn {
    background: linear-gradient(45deg, hsl(123, 47%, 38%), hsl(123, 47%, 63%));
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(123, 47%, 23%), hsl(123, 47%, 38%));
}

.contact-info {
    padding: 20px;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h4 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 0;
}

.working-hours {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.working-hours h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: hsl(123, 47%, 63%);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: hsl(123, 47%, 63%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 60px 0;
    width: 100%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: hsl(123, 47%, 63%);
    border: 4px solid white;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    width: 45%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.timeline-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mission-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid hsl(123, 47%, 63%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.mission-box h4 {
    font-size: 1.8rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.value-icon {
    font-size: 3rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 20px;
}

.value-card h5 {
    font-size: 1.4rem;
    color: hsl(123, 47%, 63%);
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.6rem;
    }
}

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

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

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

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

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

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

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

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

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

.client-info {
    border-top: 2px solid hsl(123, 47%, 63%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(123, 47%, 23%);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-location {
    color: hsl(123, 47%, 38%);
    font-size: 0.9rem;
    font-weight: 500;
}

.paw-decoration {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    background: hsl(123, 47%, 63%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.paw-decoration::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    top: -5px;
    left: 2px;
}

.paw-decoration::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: hsl(123, 47%, 63%);
    border-radius: 50%;
    top: -5px;
    right: 2px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(123, 47%, 38%) 0%, hsl(123, 47%, 23%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: hsl(123, 47%, 63%);
    box-shadow: 0 15px 40px rgba(123, 200, 100, 0.3);
}

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

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

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

.advantage-title {
    color: hsl(123, 47%, 23%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    .advantage-card {
        padding: 25px 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: #ffffff;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-brand h3 {
    color: hsl(123, 47%, 63%);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.footer-brand p {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: hsl(123, 47%, 63%);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h5 {
    color: hsl(123, 47%, 63%);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: hsl(123, 47%, 63%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, hsl(123, 47%, 23%) 0%, hsl(123, 47%, 38%) 100%);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-notice p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-btn {
    background: hsl(123, 47%, 63%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-btn:hover {
    background: hsl(123, 47%, 53%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.cookie-btn.learn-more {
    background: transparent;
    border: 2px solid hsl(123, 47%, 63%);
}

.cookie-btn.learn-more:hover {
    background: hsl(123, 47%, 63%);
    transform: translateY(-2px);
}

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