:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 68%) 50%, hsl(174, 65%, 28%) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(174, 65%, 43%);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(174, 65%, 43%);
    position: relative;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: hsl(174, 65%, 43%);
}

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

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

.story-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    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;
    animation: float 20s linear infinite;
}

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

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(174, 65%, 43%);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

.value-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title::before {
        display: none;
    }
    
    .about-image-container {
        transform: none;
    }
    
    .story-section {
        padding: 30px 25px;
    }
}

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(174, 65%, 98%) 0%, hsl(174, 25%, 96%) 100%);
}

.advantages-title {
    color: hsl(174, 65%, 28%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.advantages-subtitle {
    color: hsl(174, 65%, 43%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(174, 65%, 68%);
    box-shadow: 0 15px 40px rgba(44, 156, 145, 0.15);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
}

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

.advantage-title {
    color: hsl(174, 65%, 28%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(174, 65%, 68%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(174, 65%, 43%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: hsl(174, 65%, 28%);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    line-height: 1;
}

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

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

.progress-bar-custom {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

.chart-container {
    position: relative;
    height: 120px;
    margin: 20px 0;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100%;
    padding: 0 10px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
}

.stat-card:hover .bar {
    background: linear-gradient(to top, hsl(174, 65%, 28%), hsl(174, 65%, 43%));
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

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

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

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

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

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

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

.section-title {
    color: #1a365d;
    font-size: 1.8em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    font-weight: 600;
}

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

.privacy-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    padding-left: 25px;
}

.privacy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

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

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

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

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

.rights-card h4 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.effective-date {
    text-align: center;
    background: #34495e;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 2.2em;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

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

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

.cookies-policy h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
    font-weight: 600;
}

.cookies-policy h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.cookies-policy h3 {
    color: #2980b9;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.cookies-policy p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 1.05rem;
}

.cookies-policy ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

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

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

.cookie-type {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 5px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cookie-type h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

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

.consent-notice {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 2px solid #28a745;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 500;
}

.gdpr-compliance {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 6px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #6c757d;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #dee2e6;
    font-size: 1rem;
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

.contact-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(174, 65%, 68%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(174, 65%, 28%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(174, 65%, 43%);
    box-shadow: 0 0 0 3px rgba(64, 185, 162, 0.2);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(45deg, hsl(174, 65%, 43%), hsl(174, 65%, 28%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(64, 185, 162, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(64, 185, 162, 0.4);
    background: linear-gradient(45deg, hsl(174, 65%, 48%), hsl(174, 65%, 33%));
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(174, 65%, 68%);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(174, 65%, 68%);
    margin-bottom: 10px;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.consultation-process {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.process-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(174, 65%, 68%);
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.step-number {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 68%) 50%, hsl(174, 65%, 28%) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(174, 65%, 43%);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(174, 65%, 43%);
    position: relative;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: hsl(174, 65%, 43%);
}

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

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

.story-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    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;
    animation: float 20s linear infinite;
}

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

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(174, 65%, 43%);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

.value-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title::before {
        display: none;
    }
    
    .about-image-container {
        transform: none;
    }
    
    .story-section {
        padding: 30px 25px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

.services-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(174, 65, 43, 0.1), transparent);
    transition: left 0.6s ease;
}

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

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

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

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(174, 65%, 43%);
    text-align: center;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(174, 65%, 68%, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(174, 65%, 28%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(174, 65%, 43%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(174, 65%, 68%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(174, 65%, 78%) 0%, hsl(174, 65%, 53%) 100%);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(174, 65%, 68%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 0 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid hsl(174, 65%, 68%);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: hsl(174, 65%, 43%);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid hsl(174, 65%, 68%);
    padding-top: 20px;
}

.author-info h5 {
    color: hsl(174, 65%, 28%);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.rating {
    display: flex;
    gap: 3px;
}

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

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: white;
    color: hsl(174, 65%, 43%);
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

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

.terms-title {
    text-align: center;
    font-size: 2.5em;
    color: #1a252f;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #d4a574;
    padding-bottom: 15px;
}

.terms-section {
    margin-bottom: 35px;
    background: rgba(255,255,255,0.9);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #d4a574;
}

.section-title {
    font-size: 1.4em;
    color: #8b4513;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.important-notice {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(238,90,36,0.3);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1em;
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

.faq-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-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="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: white;
    color: hsl(174, 65%, 28%);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.faq-group {
    display: none;
}

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

.faq-item {
    border-bottom: 1px solid hsl(174, 65%, 90%);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(174, 65%, 43%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(174, 65%, 43%);
}

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

.faq-answer {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    background: hsl(174, 65%, 97%);
    border-radius: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .faq-tabs {
        padding: 0 15px;
    }
    
    .faq-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 68%) 50%, hsl(174, 65%, 28%) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(174, 65%, 43%);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(174, 65%, 43%);
    position: relative;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: hsl(174, 65%, 43%);
}

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

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

.story-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    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;
    animation: float 20s linear infinite;
}

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

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(174, 65%, 43%);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

.value-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title::before {
        display: none;
    }
    
    .about-image-container {
        transform: none;
    }
    
    .story-section {
        padding: 30px 25px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(174, 65%, 28%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(174, 65%, 43%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(174, 65%, 68%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(174, 65%, 78%) 0%, hsl(174, 65%, 53%) 100%);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}

:root {
            --primary-color: hsl(174, 65%, 43%);
            --secondary-color: hsl(174, 65%, 28%);
            --accent-color: hsl(174, 65%, 68%);
        }
        
        .navbar {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: white !important;
            text-decoration: none;
        }
        
        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-1px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .logo-svg {
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover .logo-svg {
            filter: brightness(0) invert(1) sepia(1) hue-rotate(160deg) saturate(3);
        }
        
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(255,255,255,0.95);
                margin-top: 1rem;
                border-radius: 10px;
                padding: 1rem;
                backdrop-filter: blur(10px);
            }
            
            .navbar-nav .nav-link {
                color: var(--secondary-color) !important;
                padding: 0.5rem 0;
            }
            
            .navbar-nav .nav-link:hover {
                color: var(--primary-color) !important;
            }
        }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: hsl(174, 65%, 68%);
    border-radius: 50%;
    opacity: 0.1;
    transform: rotate(15deg);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: hsl(174, 65%, 28%);
    border-radius: 50%;
    opacity: 0.15;
    transform: rotate(-25deg);
}

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

.hero-text {
    margin-left: -50px;
    margin-top: 50px;
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-right: -80px;
    margin-top: -30px;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    shape-outside: polygon(0 0, 80% 0, 100% 100%, 20% 100%);
    float: right;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
}

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(174, 65%, 68%);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

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

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

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

.cta-buttons {
    margin-top: 3rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

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

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

.btn-secondary-custom:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-text {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
    }
    
    .hero-image {
        margin-right: 0;
        margin-top: 2rem;
    }
    
    .hero-image img {
        clip-path: none;
        shape-outside: none;
        float: none;
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.faq-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="pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    opacity: 0.3;
}

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

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

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

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

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

.faq-tab {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.faq-tab:hover,
.faq-tab.active {
    background: white;
    color: hsl(174, 65%, 28%);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.faq-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.faq-group {
    display: none;
}

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

.faq-item {
    border-bottom: 1px solid hsl(174, 65%, 90%);
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: hsl(174, 65%, 43%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: hsl(174, 65%, 43%);
}

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

.faq-answer {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    background: hsl(174, 65%, 97%);
    border-radius: 10px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-content {
        padding: 25px;
        margin: 0 15px;
    }
    
    .faq-tabs {
        padding: 0 15px;
    }
    
    .faq-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

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

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 68%) 50%, hsl(174, 65%, 28%) 100%);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: hsl(174, 65%, 28%);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: hsl(174, 65%, 43%);
}

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.about-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid hsl(174, 65%, 43%);
    position: relative;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.block-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 20px;
    position: relative;
}

.block-title::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: hsl(174, 65%, 43%);
}

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

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

.story-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    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;
    animation: float 20s linear infinite;
}

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

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

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid hsl(174, 65%, 43%);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

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

.value-description {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .content-block {
        padding: 25px;
    }
    
    .block-title::before {
        display: none;
    }
    
    .about-image-container {
        transform: none;
    }
    
    .story-section {
        padding: 30px 25px;
    }
}

.contact-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid hsl(174, 65%, 68%);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(174, 65%, 28%);
}

.form-control:focus {
    outline: none;
    border-color: hsl(174, 65%, 43%);
    box-shadow: 0 0 0 3px rgba(64, 185, 162, 0.2);
    transform: translateY(-2px);
}

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

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

.submit-btn {
    background: linear-gradient(45deg, hsl(174, 65%, 43%), hsl(174, 65%, 28%));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(64, 185, 162, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(64, 185, 162, 0.4);
    background: linear-gradient(45deg, hsl(174, 65%, 48%), hsl(174, 65%, 33%));
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border-left: 4px solid hsl(174, 65%, 68%);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(174, 65%, 68%);
    margin-bottom: 10px;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.consultation-process {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.process-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: hsl(174, 65%, 68%);
    margin-bottom: 20px;
    text-align: center;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.step-number {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 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="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

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

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

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

.newsletter-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

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

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

.newsletter-input {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: hsl(174, 65%, 28%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    background: white;
}

.newsletter-input::placeholder {
    color: hsl(174, 65%, 43%);
    opacity: 0.7;
}

.subscribe-btn {
    background: linear-gradient(45deg, hsl(174, 65%, 68%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, hsl(174, 65%, 78%) 0%, hsl(174, 65%, 53%) 100%);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-title {
        font-size: 2.2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(174, 65, 43, 0.1), transparent);
    transition: left 0.6s ease;
}

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

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

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

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    text-align: center;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: hsl(174, 65%, 43%);
    text-align: center;
    margin-bottom: 15px;
}

.service-conditions {
    background: hsl(174, 65%, 68%, 0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
}

.testimonials-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.section-subtitle {
    color: hsl(174, 65%, 68%);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 0 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid hsl(174, 65%, 68%);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: hsl(174, 65%, 43%);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid hsl(174, 65%, 68%);
    padding-top: 20px;
}

.author-info h5 {
    color: hsl(174, 65%, 28%);
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

.author-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.rating {
    display: flex;
    gap: 3px;
}

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

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: white;
    color: hsl(174, 65%, 43%);
    transform: scale(1.1);
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

#advantages {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(174, 65%, 98%) 0%, hsl(174, 25%, 96%) 100%);
}

.advantages-title {
    color: hsl(174, 65%, 28%);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.advantages-subtitle {
    color: hsl(174, 65%, 43%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: hsl(174, 65%, 68%);
    box-shadow: 0 15px 40px rgba(44, 156, 145, 0.15);
}

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

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
}

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

.advantage-title {
    color: hsl(174, 65%, 28%);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.advantage-description {
    color: #666;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

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

.statistics-section {
    background: linear-gradient(135deg, hsl(174, 65%, 43%) 0%, hsl(174, 65%, 28%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.section-subtitle {
    color: hsl(174, 65%, 68%);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

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

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

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

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

.stat-icon {
    font-size: 3.5rem;
    color: hsl(174, 65%, 43%);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    color: hsl(174, 65%, 28%);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: hsl(174, 65%, 28%);
    margin-bottom: 15px;
    line-height: 1;
}

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

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

.progress-bar-custom {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 10px;
    transition: width 2s ease-in-out;
}

.chart-container {
    position: relative;
    height: 120px;
    margin: 20px 0;
}

.bar-chart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 100%;
    padding: 0 10px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, hsl(174, 65%, 43%), hsl(174, 65%, 68%));
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
}

.stat-card:hover .bar {
    background: linear-gradient(to top, hsl(174, 65%, 28%), hsl(174, 65%, 43%));
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        font-size: 2.8rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(174, 65%, 28%) 0%, hsl(174, 65%, 43%) 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

footer h5 {
    color: hsl(174, 65%, 68%);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

footer a:hover {
    color: hsl(174, 65%, 68%);
    transition: color 0.3s ease;
}

footer .company-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

footer .contact-info i {
    color: hsl(174, 65%, 68%);
    margin-right: 0.5rem;
    width: 20px;
}

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

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

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

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

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

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

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

.cookie-notice .btn-learn {
    background: transparent;
    border: 2px solid hsl(174, 65%, 68%);
    color: hsl(174, 65%, 68%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(174, 65%, 68%);
    color: hsl(174, 65%, 28%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-notice .btn-accept,
    .cookie-notice .btn-learn {
        width: 100%;
        text-align: center;
    }
}