:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 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, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cookies-policy h1 {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-policy h2 {
    font-size: 1.8em;
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 20px;
    border-left: 5px solid #3498db;
    padding-left: 20px;
    position: relative;
}

.cookies-policy h2::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, #3498db, #2980b9);
    border-radius: 3px;
}

.cookies-policy h3 {
    font-size: 1.4em;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 15px;
    text-align: justify;
    background: rgba(255,255,255,0.7);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookies-policy ul {
    background: rgba(255,255,255,0.8);
    padding: 20px 30px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.cookies-policy li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.cookies-policy li::before {
    content: '🍪';
    position: absolute;
    left: 0;
    top: 0;
}

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

.highlight-box h3 {
    color: #fff;
    margin-top: 0;
}

.consent-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 2px solid #f39c12;
    box-shadow: 0 5px 20px rgba(243,156,18,0.3);
}

.gdpr-compliance {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 6px solid #27ae60;
    box-shadow: 0 5px 20px rgba(39,174,96,0.2);
}

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

.cookie-type {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    border-top: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-5px);
}

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

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

.hero-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 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;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 2rem 1rem;
}

.hero-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid hsl(124, 69%, 73%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: hsl(124, 69%, 73%);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: slideInUp 1s ease-out 0.4s both;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.benefits-list li:nth-child(2) { animation-delay: 0.7s; }
.benefits-list li:nth-child(3) { animation-delay: 0.8s; }
.benefits-list li:nth-child(4) { animation-delay: 0.9s; }
.benefits-list li:nth-child(5) { animation-delay: 1s; }

.benefits-list i {
    color: hsl(124, 69%, 73%);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 2rem;
}

.cta-buttons {
    margin-top: 3rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.btn-primary-custom {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-secondary-custom {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-custom:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(124, 69%, 73%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 69%, 48%);
    font-weight: bold;
    line-height: 1;
}

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

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(124, 69%, 73%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    font-size: 1.1rem;
}

.client-location {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

.services-title {
    color: hsl(124, 69%, 33%);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(124, 69%, 73%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(124, 69%, 48%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(124, 69%, 33%);
    transform: scale(1.1);
}

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

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

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

.service-conditions {
    background: hsl(124, 69%, 73%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(124, 69%, 48%);
}

.service-conditions h6 {
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.service-conditions li {
    margin-bottom: 5px;
}

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

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="50" cy="10" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="10" cy="60" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="90" cy="30" r="1" fill="rgba(124,69,48,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(124, 69%, 33%);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

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

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 69, 48, 0.15);
    border-color: hsl(124, 69%, 73%);
}

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

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(124, 69%, 33%), hsl(124, 69%, 48%));
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

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

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

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

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(124, 69%, 73%), hsl(124, 69%, 48%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

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

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

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 3px solid hsl(124, 69%, 73%);
}

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

.form-label {
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(124, 69%, 73%);
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(124, 69%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(124, 69, 48, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(124, 69, 48, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 69, 48, 0.4);
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
}

.contact-info {
    background: hsl(124, 69%, 48%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.info-item {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(124, 69%, 73%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.consultation-process {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 5px solid hsl(124, 69%, 73%);
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 15px;
}

.process-text {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 40px;
}

.content-image {
    flex: 0 0 45%;
    position: relative;
}

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

.content-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 3px;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 69%, 73%) 0%, hsl(124, 69%, 48%) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.highlight-box h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
}

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

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

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

@media (max-width: 768px) {
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-row:nth-child(even) {
        flex-direction: column !important;
    }
    
    .content-text {
        padding: 20px 0;
        order: 2;
    }
    
    .content-image {
        flex: none;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .content-text h3 {
        font-size: 2rem;
    }
    
    .content-text h3::before {
        display: none;
    }
}

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

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

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

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    position: relative;
}

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid hsl(124, 69%, 73%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
}

.faq-tab:hover {
    background: hsl(124, 69%, 73%);
    color: white;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: hsl(124, 69%, 48%);
    color: white;
    border-color: hsl(124, 69%, 48%);
}

.faq-content {
    display: none;
}

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

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

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 48%);
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
    background: hsl(124, 69%, 98%);
}

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: scale(1);
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 69%, 73%);
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 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="60" 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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: hsl(124, 69%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, hsl(124, 69%, 53%) 0%, hsl(124, 69%, 38%) 100%);
}

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

.benefits-list li {
    padding: 10px 0;
    color: hsl(124, 69%, 33%);
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(124, 69%, 48%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 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%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 40px;
}

.content-image {
    flex: 0 0 45%;
    position: relative;
}

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

.content-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 3px;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 69%, 73%) 0%, hsl(124, 69%, 48%) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.highlight-box h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
}

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

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

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

@media (max-width: 768px) {
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-row:nth-child(even) {
        flex-direction: column !important;
    }
    
    .content-text {
        padding: 20px 0;
        order: 2;
    }
    
    .content-image {
        flex: none;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .content-text h3 {
        font-size: 2rem;
    }
    
    .content-text h3::before {
        display: none;
    }
}

.advantages-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="50" cy="10" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="10" cy="60" r="1" fill="rgba(124,69,48,0.02)"/><circle cx="90" cy="30" r="1" fill="rgba(124,69,48,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(124, 69%, 33%);
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

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

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

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(124, 69, 48, 0.15);
    border-color: hsl(124, 69%, 73%);
}

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

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, hsl(124, 69%, 33%), hsl(124, 69%, 48%));
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

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

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

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

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

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(124, 69%, 73%), hsl(124, 69%, 48%));
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

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

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

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

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

.statistics-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.stat-item:hover::before {
    transform: scale(1);
}

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

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: hsl(124, 69%, 73%);
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .statistics-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

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

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

.privacy-section {
    background: white;
    margin: 25px 0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #34495e;
    font-size: 1.2em;
    margin: 20px 0 15px 0;
    font-weight: 500;
}

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

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

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

.privacy-section li::before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.highlight-box {
    background: #e8f4f8;
    border: 1px solid #3498db;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: 3px solid hsl(124, 69%, 73%);
}

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

.form-label {
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: block;
}

.form-control {
    border: 2px solid hsl(124, 69%, 73%);
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #333;
}

.form-control:focus {
    border-color: hsl(124, 69%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(124, 69, 48, 0.25);
    background: white;
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

.submit-btn {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(124, 69, 48, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(124, 69, 48, 0.4);
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
}

.contact-info {
    background: hsl(124, 69%, 48%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.info-item {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: hsl(124, 69%, 73%);
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.consultation-process {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 5px solid hsl(124, 69%, 73%);
    position: relative;
    z-index: 2;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 15px;
}

.process-text {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 40px;
}

.content-image {
    flex: 0 0 45%;
    position: relative;
}

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

.content-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 3px;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 69%, 73%) 0%, hsl(124, 69%, 48%) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.highlight-box h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
}

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

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

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

@media (max-width: 768px) {
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-row:nth-child(even) {
        flex-direction: column !important;
    }
    
    .content-text {
        padding: 20px 0;
        order: 2;
    }
    
    .content-image {
        flex: none;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .content-text h3 {
        font-size: 2rem;
    }
    
    .content-text h3::before {
        display: none;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

.services-title {
    color: hsl(124, 69%, 33%);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: hsl(124, 69%, 73%);
}

.service-icon {
    font-size: 3rem;
    color: hsl(124, 69%, 48%);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: hsl(124, 69%, 33%);
    transform: scale(1.1);
}

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

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

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

.service-conditions {
    background: hsl(124, 69%, 73%, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid hsl(124, 69%, 48%);
}

.service-conditions h6 {
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    margin-bottom: 8px;
}

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}

.service-conditions li {
    margin-bottom: 5px;
}

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

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 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="60" 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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: hsl(124, 69%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, hsl(124, 69%, 53%) 0%, hsl(124, 69%, 38%) 100%);
}

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

.benefits-list li {
    padding: 10px 0;
    color: hsl(124, 69%, 33%);
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(124, 69%, 48%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    position: relative;
    overflow: hidden;
}

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

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

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

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: hsl(124, 69%, 73%);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: hsl(124, 69%, 48%);
    font-weight: bold;
    line-height: 1;
}

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

.client-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid hsl(124, 69%, 73%);
    padding-top: 1rem;
}

.client-name {
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    font-size: 1.1rem;
}

.client-location {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

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

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

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

.section-title {
    font-size: 1.5em;
    color: #2980b9;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content {
    margin-bottom: 25px;
    text-align: justify;
    font-size: 1.05em;
}

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

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

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

.terms-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 20px;
}

.terms-list li:before {
    content: "▶";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-top: 30px;
    padding: 15px;
    background: #ecf0f1;
    border-radius: 8px;
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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

:root {
            --primary-color: hsl(124, 69%, 48%);
            --secondary-color: hsl(124, 69%, 33%);
            --accent-color: hsl(124, 69%, 73%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .navbar-brand:hover {
            color: var(--accent-color) !important;
            transform: scale(1.05);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        
        .navbar-toggler {
            border: 2px solid white;
            border-radius: 8px;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-glow {
            filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
        }
        
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(255, 255, 255, 0.95);
                border-radius: 15px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .navbar-nav .nav-link {
                color: var(--primary-color) !important;
                text-align: center;
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                background-color: var(--accent-color);
                color: white !important;
            }
        }

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

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

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

.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    position: relative;
}

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

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

.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-tab {
    padding: 12px 24px;
    background: white;
    border: 2px solid hsl(124, 69%, 73%);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
}

.faq-tab:hover {
    background: hsl(124, 69%, 73%);
    color: white;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: hsl(124, 69%, 48%);
    color: white;
    border-color: hsl(124, 69%, 48%);
}

.faq-content {
    display: none;
}

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

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

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 48%);
    transition: all 0.3s ease;
}

.faq-question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-question:hover {
    background: hsl(124, 69%, 98%);
}

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(124, 69, 48, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

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

.about-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(124, 69%, 33%);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.about-hero h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.3rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.content-row:nth-child(even) {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
    padding: 0 40px;
}

.content-image {
    flex: 0 0 45%;
    position: relative;
}

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

.content-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(45deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.content-text h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(124, 69%, 33%);
    margin-bottom: 25px;
    position: relative;
}

.content-text h3::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60px;
    background: linear-gradient(180deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
    border-radius: 3px;
}

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

.highlight-box {
    background: linear-gradient(135deg, hsl(124, 69%, 73%) 0%, hsl(124, 69%, 48%) 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.highlight-box h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.highlight-box p {
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

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

.value-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(124, 69%, 48%), hsl(124, 69%, 73%));
}

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

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

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

@media (max-width: 768px) {
    .content-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .content-row:nth-child(even) {
        flex-direction: column !important;
    }
    
    .content-text {
        padding: 20px 0;
        order: 2;
    }
    
    .content-image {
        flex: none;
        width: 100%;
        order: 1;
        margin-bottom: 30px;
    }
    
    .about-hero h2 {
        font-size: 2.5rem;
    }
    
    .content-text h3 {
        font-size: 2rem;
    }
    
    .content-text h3::before {
        display: none;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 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="60" 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); }
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: hsl(124, 69%, 48%);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(124, 69%, 48%) 0%, hsl(124, 69%, 33%) 100%);
    border: none;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, hsl(124, 69%, 53%) 0%, hsl(124, 69%, 38%) 100%);
}

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

.benefits-list li {
    padding: 10px 0;
    color: hsl(124, 69%, 33%);
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(124, 69%, 48%);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .subscribe-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(124, 69%, 33%) 0%, hsl(124, 69%, 48%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    color: hsl(124, 69%, 73%);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-links h5 {
    color: hsl(124, 69%, 73%);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(124, 69%, 73%);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contact a {
    color: hsl(124, 69%, 73%);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.cookie-notice .btn-accept {
    background: hsl(124, 69%, 73%);
    border: none;
    color: hsl(124, 69%, 33%);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cookie-notice .btn-accept:hover {
    background: white;
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(124, 69%, 73%);
    color: hsl(124, 69%, 73%);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(124, 69%, 73%);
    color: hsl(124, 69%, 33%);
    transform: translateY(-2px);
}

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

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