:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    position: relative;
}

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

.about-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    margin-bottom: 80px;
}

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

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

.about-text {
    padding-left: 40px;
}

.about-text h3 {
    color: hsl(112, 58%, 30%);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(112, 58%, 70%) 0%, hsl(112, 58%, 45%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(112, 58%, 45%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

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

.value-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(112, 58%, 70%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(112, 58, 45, 0.3);
}

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

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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.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-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

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

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

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(112, 58%, 45%), hsl(112, 58%, 70%));
}

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

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

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

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

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

.privacy-section h2 {
    color: #ff6b6b;
    font-size: 1.8em;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
}

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

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

.privacy-list li {
    background: #f8f9fa;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
    position: relative;
}

.privacy-list li:before {
    content: "🌸";
    margin-right: 10px;
}

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

.effective-date {
    text-align: center;
    font-style: italic;
    color: #636e72;
    background: #ddd6fe;
    padding: 15px;
    border-radius: 8px;
    margin: 30px 0;
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.policy-header h1 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
}

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

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

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

.section-title {
    color: #ff6b6b;
    font-size: 1.8em;
    margin: 0 0 20px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "🌸";
    margin-right: 10px;
    font-size: 1.2em;
}

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

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

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

.consent-notice {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid #17a2b8;
    text-align: center;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border: 1px solid #28a745;
}

ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    position: relative;
}

li::marker {
    content: "🌺 ";
}

strong {
    color: #ff6b6b;
    font-weight: 600;
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid hsl(112, 58%, 70%);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: hsl(112, 58%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: hsl(112, 58%, 30%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: hsl(112, 58%, 70%);
}

.info-text {
    line-height: 1.6;
    opacity: 0.9;
}

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

.hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(112, 58%, 70%);
}

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

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

.contact-form {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: hsl(112, 58%, 30%);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: hsl(112, 58%, 30%);
    text-align: center;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(112, 58%, 70%);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(112, 58%, 30%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(112, 58%, 45%);
    box-shadow: 0 0 0 3px rgba(112, 158, 45, 0.1);
}

.form-control::placeholder {
    color: rgba(112, 158, 45, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(112, 158, 45, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 158, 45, 0.4);
    background: linear-gradient(135deg, hsl(112, 58%, 50%) 0%, hsl(112, 58%, 35%) 100%);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}

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

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    position: relative;
}

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

.about-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    margin-bottom: 80px;
}

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

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

.about-text {
    padding-left: 40px;
}

.about-text h3 {
    color: hsl(112, 58%, 30%);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(112, 58%, 70%) 0%, hsl(112, 58%, 45%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(112, 58%, 45%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

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

.value-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(112, 58%, 95%) 0%, hsl(112, 58%, 90%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-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="hsl(112, 58%, 70%)" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="hsl(112, 58%, 45%)" opacity="0.2"/><circle cx="60" cy="80" r="2.5" fill="hsl(112, 58%, 70%)" opacity="0.25"/></svg>') repeat;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.services-tabs {
    position: relative;
    z-index: 2;
}

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

.nav-tabs .nav-link {
    border: none;
    background: white;
    color: hsl(112, 58%, 45%);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(112, 58%, 70%), transparent);
    transition: left 0.5s ease;
}

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

.nav-tabs .nav-link:hover {
    background: hsl(112, 58%, 45%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(112, 58%, 45%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
}

.service-description {
    color: hsl(112, 58%, 35%);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(112, 58%, 45%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(112, 58%, 95%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(112, 58%, 45%);
}

.service-conditions h6 {
    color: hsl(112, 58%, 30%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: hsl(112, 58%, 35%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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.04)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-benefits {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(112, 58%, 70%);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: hsl(112, 58%, 30%);
    font-weight: bold;
    flex-shrink: 0;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(112, 58%, 30%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(112, 58%, 70%);
    background: white;
    box-shadow: 0 0 0 3px rgba(112, 58, 45, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(112, 58, 45, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(112, 58%, 70%), hsl(112, 58%, 60%));
    color: hsl(112, 58%, 20%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    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.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(112, 58%, 75%), hsl(112, 58%, 65%));
}

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

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(112, 58%, 45%), hsl(112, 58%, 70%));
}

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

.testimonial-card.large {
    grid-column: span 2;
}

.testimonial-card.tall {
    grid-row: span 2;
}

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

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

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid hsl(112, 58%, 95%);
}

.client-name {
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    font-size: 1.1rem;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card.large,
    .testimonial-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

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

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

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

.section-title {
    color: #2d3436;
    font-size: 1.6em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #fd79a8;
    font-weight: 600;
}

.terms-text {
    text-align: justify;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #636e72;
}

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

.important-notice {
    background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(225, 112, 85, 0.3);
}

.subsection {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #74b9ff;
}

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

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(112, 58%, 98%) 0%, hsl(112, 58%, 95%) 100%);
    padding: 80px 0;
}

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

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: hsl(112, 58%, 45%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 2px solid hsl(112, 58%, 90%);
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(112, 58%, 45%);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.faq-tab:hover {
    color: hsl(112, 58%, 30%);
    background: hsl(112, 58%, 95%);
}

.faq-tab.active {
    color: hsl(112, 58%, 30%);
    border-bottom-color: hsl(112, 58%, 45%);
    background: hsl(112, 58%, 95%);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    background: hsl(112, 58%, 45%);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: hsl(112, 58%, 40%);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: hsl(112, 58%, 25%);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .faq-question {
        padding: 18px;
        font-size: 1rem;
    }
}

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

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    position: relative;
}

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

.about-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    margin-bottom: 80px;
}

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

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

.about-text {
    padding-left: 40px;
}

.about-text h3 {
    color: hsl(112, 58%, 30%);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(112, 58%, 70%) 0%, hsl(112, 58%, 45%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(112, 58%, 45%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

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

.value-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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.04)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-benefits {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(112, 58%, 70%);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: hsl(112, 58%, 30%);
    font-weight: bold;
    flex-shrink: 0;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(112, 58%, 30%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(112, 58%, 70%);
    background: white;
    box-shadow: 0 0 0 3px rgba(112, 58, 45, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(112, 58, 45, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(112, 58%, 70%), hsl(112, 58%, 60%));
    color: hsl(112, 58%, 20%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    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.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(112, 58%, 75%), hsl(112, 58%, 65%));
}

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

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

:root {
            --primary-color: hsl(112, 58%, 45%);
            --secondary-color: hsl(112, 58%, 30%);
            --accent-color: hsl(112, 58%, 70%);
        }

        .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: 12px;
        }

        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.02);
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 8px;
            padding: 8px 16px !important;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
            background-color: rgba(255,255,255,0.15);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid rgba(255,255,255,0.3);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem rgba(255,255,255,0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .logo-image {
            filter: brightness(1.1);
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .logo-image {
            transform: rotate(5deg) scale(1.1);
        }

        @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: 5px 0;
            }

            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(112, 58%, 90%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: hsl(112, 58%, 95%);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

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

.hero-features i {
    color: hsl(112, 58%, 70%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

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

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

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

.btn-primary-custom {
    background: hsl(112, 58%, 70%);
    border: none;
    color: hsl(112, 58%, 20%);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(112, 58%, 70%);
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    padding: 13px 33px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background: hsl(112, 58%, 70%);
    color: hsl(112, 58%, 20%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px 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;
    }
    
    .hero-image img {
        transform: none;
        border-radius: 15px;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        text-align: center;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

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

.floating-elements::after {
    content: '🌸';
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    content: '🌺';
    position: absolute;
    bottom: 30%;
    left: 5%;
    font-size: 1.5rem;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite reverse;
}

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

.faq-section {
    background: linear-gradient(135deg, hsl(112, 58%, 98%) 0%, hsl(112, 58%, 95%) 100%);
    padding: 80px 0;
}

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

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: hsl(112, 58%, 45%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: 2px solid hsl(112, 58%, 90%);
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    background: none;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(112, 58%, 45%);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.faq-tab:hover {
    color: hsl(112, 58%, 30%);
    background: hsl(112, 58%, 95%);
}

.faq-tab.active {
    color: hsl(112, 58%, 30%);
    border-bottom-color: hsl(112, 58%, 45%);
    background: hsl(112, 58%, 95%);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    background: hsl(112, 58%, 45%);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: hsl(112, 58%, 40%);
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    color: hsl(112, 58%, 25%);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-tab {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .faq-question {
        padding: 18px;
        font-size: 1rem;
    }
}

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

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    position: relative;
}

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

.about-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    margin-bottom: 80px;
}

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

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

.about-text {
    padding-left: 40px;
}

.about-text h3 {
    color: hsl(112, 58%, 30%);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(112, 58%, 70%) 0%, hsl(112, 58%, 45%) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: hsl(112, 58%, 45%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

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

.value-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-text {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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.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-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

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

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

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

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

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(112, 58%, 45%), hsl(112, 58%, 70%));
}

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

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

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.advantage-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: hsl(112, 58%, 70%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(112, 58, 45, 0.3);
}

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

.advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 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.04)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

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

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

.newsletter-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.newsletter-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.newsletter-benefits {
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    background: hsl(112, 58%, 70%);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: hsl(112, 58%, 30%);
    font-weight: bold;
    flex-shrink: 0;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

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

.form-control {
    background: rgba(255,255,255,0.9);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: hsl(112, 58%, 30%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(112, 58%, 70%);
    background: white;
    box-shadow: 0 0 0 3px rgba(112, 58, 45, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(112, 58, 45, 0.6);
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(112, 58%, 70%), hsl(112, 58%, 60%));
    color: hsl(112, 58%, 20%);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    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.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: linear-gradient(45deg, hsl(112, 58%, 75%), hsl(112, 58%, 65%));
}

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

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

.privacy-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, hsl(112, 58%, 45%), hsl(112, 58%, 70%));
}

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

.testimonial-card.large {
    grid-column: span 2;
}

.testimonial-card.tall {
    grid-row: span 2;
}

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

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

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid hsl(112, 58%, 95%);
}

.client-name {
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    font-size: 1.1rem;
}

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

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .testimonial-card.large,
    .testimonial-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(112, 58%, 95%) 0%, hsl(112, 58%, 90%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-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="hsl(112, 58%, 70%)" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="hsl(112, 58%, 45%)" opacity="0.2"/><circle cx="60" cy="80" r="2.5" fill="hsl(112, 58%, 70%)" opacity="0.25"/></svg>') repeat;
    pointer-events: none;
}

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

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.services-tabs {
    position: relative;
    z-index: 2;
}

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

.nav-tabs .nav-link {
    border: none;
    background: white;
    color: hsl(112, 58%, 45%);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(112, 58%, 70%), transparent);
    transition: left 0.5s ease;
}

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

.nav-tabs .nav-link:hover {
    background: hsl(112, 58%, 45%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(112, 58%, 45%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

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

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

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

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

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(112, 58%, 30%);
    margin-bottom: 15px;
}

.service-description {
    color: hsl(112, 58%, 35%);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: hsl(112, 58%, 45%);
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(112, 58%, 95%);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid hsl(112, 58%, 45%);
}

.service-conditions h6 {
    color: hsl(112, 58%, 30%);
    font-weight: 600;
    margin-bottom: 10px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: hsl(112, 58%, 35%);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 12px 20px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .service-card {
        padding: 20px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

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

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border-left: 4px solid hsl(112, 58%, 70%);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: hsl(112, 58%, 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: hsl(112, 58%, 30%);
}

.info-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: hsl(112, 58%, 70%);
}

.info-text {
    line-height: 1.6;
    opacity: 0.9;
}

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

.hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: hsl(112, 58%, 70%);
}

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

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

.contact-form {
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: hsl(112, 58%, 30%);
}

.form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: hsl(112, 58%, 30%);
    text-align: center;
}

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

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid hsl(112, 58%, 70%);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(112, 58%, 30%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(112, 58%, 45%);
    box-shadow: 0 0 0 3px rgba(112, 158, 45, 0.1);
}

.form-control::placeholder {
    color: rgba(112, 158, 45, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, hsl(112, 58%, 45%) 0%, hsl(112, 58%, 30%) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(112, 158, 45, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 158, 45, 0.4);
    background: linear-gradient(135deg, hsl(112, 58%, 50%) 0%, hsl(112, 58%, 35%) 100%);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(112, 58%, 30%) 0%, hsl(112, 58%, 25%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

footer h5 {
    color: hsl(112, 58%, 70%);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

footer a:hover {
    color: hsl(112, 58%, 70%);
    transform: translateX(5px);
}

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

footer .contact-info {
    font-size: 0.9rem;
}

footer .contact-info i {
    color: hsl(112, 58%, 70%);
    margin-right: 0.5rem;
}

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

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

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

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

.cookie-notice .btn {
    margin: 0.25rem;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.cookie-notice .btn-light {
    background: white;
    color: hsl(112, 58%, 30%);
    border: none;
}

.cookie-notice .btn-light:hover {
    background: hsl(112, 58%, 70%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.cookie-notice .btn-outline-light:hover {
    background: white;
    color: hsl(112, 58%, 30%);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0 1rem;
    }
    
    .cookie-notice {
        padding: 1rem 0;
    }
    
    .cookie-notice .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}