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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: hsl(180, 30%, 75%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(180, 30%, 75%);
    margin: 0 60px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: hsl(180, 30%, 75%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: hsl(180, 30%, 75%);
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid hsl(180, 30%, 75%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    background: hsl(180, 30%, 75%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid hsl(180, 30%, 35%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    background: hsl(180, 30%, 35%);
    color: hsl(180, 30%, 75%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid hsl(180, 30%, 75%);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(180, 30%, 75%);
}

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

.highlight-box {
    background: linear-gradient(45deg, hsl(180, 30%, 75%), hsl(180, 30%, 50%));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: hsl(180, 30%, 35%);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        margin: 20px 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        margin: 20px 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.advantages-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

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

.advantage-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;
}

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(180, 30%, 75%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(180, 30%, 35%), hsl(180, 30%, 50%));
}

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

.advantage-title {
    color: hsl(180, 30%, 35%);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
    
    .advantage-title {
        font-size: 1.4rem;
    }
    
    .advantage-description {
        font-size: 1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(180, 30%, 75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(180, 30%, 75%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.stat-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(180, 30%, 75%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(180, 30%, 75%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(180, 30%, 75%);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@keyframes shimmer {
    0% { opacity: 0; transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }
.stat-card:nth-child(9) { animation-delay: 0.9s; }
.stat-card:nth-child(10) { animation-delay: 1.0s; }

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

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

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

.privacy-policy h1 {
    color: #2c3e50;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
}

.privacy-policy h2 {
    color: #34495e;
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    padding: 15px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.privacy-policy h3 {
    color: #2980b9;
    font-size: 1.2em;
    margin: 20px 0 10px 0;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

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

.privacy-policy ul {
    background: rgba(255,255,255,0.9);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 15px 0;
}

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

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

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

.effective-date {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

.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%);
    min-height: 100vh;
}

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

.policy-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.policy-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

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

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

.section-title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e74c3c;
}

.policy-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: justify;
}

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

.cookie-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.cookie-card p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
}

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

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

.gdpr-section {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 12px 35px rgba(17, 153, 142, 0.3);
}

.gdpr-section h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.control-list li {
    background: #ecf0f1;
    margin: 10px 0;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    font-weight: 500;
    transition: background 0.3s ease;
}

.control-list li:hover {
    background: #d5dbdb;
}

.last-updated {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #34495e;
    color: white;
    border-radius: 10px;
    font-weight: 500;
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

.form-control {
    border: 2px solid hsl(180, 30%, 75%);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(180, 30%, 35%);
}

.form-control:focus {
    border-color: hsl(180, 30%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 165, 0.25);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(180, 30%, 50%), hsl(180, 30%, 35%));
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(180, 30%, 45%), hsl(180, 30%, 30%));
}

.contact-info {
    padding: 40px 20px;
}

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

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

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

.info-card h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

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

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: hsl(180, 30%, 75%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(180, 30%, 75%);
    margin: 0 60px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: hsl(180, 30%, 75%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: hsl(180, 30%, 75%);
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid hsl(180, 30%, 75%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    background: hsl(180, 30%, 75%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid hsl(180, 30%, 35%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    background: hsl(180, 30%, 35%);
    color: hsl(180, 30%, 75%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid hsl(180, 30%, 75%);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(180, 30%, 75%);
}

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

.highlight-box {
    background: linear-gradient(45deg, hsl(180, 30%, 75%), hsl(180, 30%, 50%));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: hsl(180, 30%, 35%);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        margin: 20px 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        margin: 20px 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

.services-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.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(180, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 35%);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-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.5s ease;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(180, 30%, 50%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(180, 30%, 50%), hsl(180, 30%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(180, 30%, 35%), hsl(180, 30%, 50%));
}

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

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

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

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

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

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

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(180, 30%, 35%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

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

.newsletter-description {
    color: hsl(180, 30%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(180, 30%, 35%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(180, 30%, 75%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.email-input:focus {
    border-color: hsl(180, 30%, 50%);
    box-shadow: 0 0 0 3px rgba(77, 166, 166, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(77, 166, 166, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 166, 166, 0.4);
    background: linear-gradient(135deg, hsl(180, 30%, 45%) 0%, hsl(180, 30%, 30%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(180, 30%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

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

.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 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></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: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(180, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 60s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid hsl(180, 30%, 75%);
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: hsl(180, 30%, 35%);
    font-size: 1.1rem;
}

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

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

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 400px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

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

.terms-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #2c5aa0;
}

.terms-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.terms-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

.terms-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid #2c5aa0;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "▶";
    margin-right: 10px;
    color: #ff6b35;
}

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

.terms-list {
    padding-left: 25px;
    margin: 20px 0;
}

.terms-list li {
    margin-bottom: 10px;
    position: relative;
}

.terms-list li::marker {
    color: #2c5aa0;
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.effective-date {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-size: 0.95rem;
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

.faq-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: hsl(180, 30%, 85%);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: hsl(180, 30%, 75%);
    --bs-accordion-border-radius: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid hsl(180, 30%, 75%);
    margin-bottom: 20px;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: hsl(180, 30%, 85%);
}

.accordion-header {
    border-radius: 12px !important;
}

.accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.15) !important;
    color: hsl(180, 30%, 95%) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(180, 30%, 90%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid hsl(180, 30%, 75%);
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(180, 30%, 75%) 0%, hsl(180, 30%, 85%) 100%);
    color: hsl(180, 30%, 25%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: hsl(180, 30%, 75%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(180, 30%, 75%);
    margin: 0 60px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: hsl(180, 30%, 75%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: hsl(180, 30%, 75%);
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid hsl(180, 30%, 75%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    background: hsl(180, 30%, 75%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid hsl(180, 30%, 35%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    background: hsl(180, 30%, 35%);
    color: hsl(180, 30%, 75%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid hsl(180, 30%, 75%);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(180, 30%, 75%);
}

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

.highlight-box {
    background: linear-gradient(45deg, hsl(180, 30%, 75%), hsl(180, 30%, 50%));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: hsl(180, 30%, 35%);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        margin: 20px 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        margin: 20px 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(180, 30%, 35%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

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

.newsletter-description {
    color: hsl(180, 30%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(180, 30%, 35%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(180, 30%, 75%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.email-input:focus {
    border-color: hsl(180, 30%, 50%);
    box-shadow: 0 0 0 3px rgba(77, 166, 166, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(77, 166, 166, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 166, 166, 0.4);
    background: linear-gradient(135deg, hsl(180, 30%, 45%) 0%, hsl(180, 30%, 30%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(180, 30%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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

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

.hero-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-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.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

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

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

.hero-subtitle {
    font-size: 1.8rem;
    color: hsl(180, 30%, 75%);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

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

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

.advantages-list li {
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.advantages-list li i {
    color: hsl(180, 30%, 75%);
    margin-right: 1rem;
    font-size: 1.3rem;
}

.cta-buttons {
    margin-top: 3rem;
}

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

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

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

.btn-secondary-custom:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 35%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .cta-buttons {
        text-align: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

.form-control {
    border: 2px solid hsl(180, 30%, 75%);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: hsl(180, 30%, 35%);
}

.form-control:focus {
    border-color: hsl(180, 30%, 50%);
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 165, 0.25);
    outline: none;
}

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

.submit-btn {
    background: linear-gradient(45deg, hsl(180, 30%, 50%), hsl(180, 30%, 35%));
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, hsl(180, 30%, 45%), hsl(180, 30%, 30%));
}

.contact-info {
    padding: 40px 20px;
}

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

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

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

.info-card h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

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

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

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

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

.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: hsl(180, 30%, 75%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-content {
    flex: 1;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid hsl(180, 30%, 75%);
    margin: 0 60px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    border-left-color: hsl(180, 30%, 75%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    border-right-color: hsl(180, 30%, 75%);
}

.timeline-image {
    flex: 1;
    margin: 0 60px;
}

.timeline-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid hsl(180, 30%, 75%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    background: hsl(180, 30%, 75%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid hsl(180, 30%, 35%);
    z-index: 3;
}

.timeline-year {
    position: absolute;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    background: hsl(180, 30%, 35%);
    color: hsl(180, 30%, 75%);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid hsl(180, 30%, 75%);
}

.content-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: hsl(180, 30%, 75%);
}

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

.highlight-box {
    background: linear-gradient(45deg, hsl(180, 30%, 75%), hsl(180, 30%, 50%));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    color: hsl(180, 30%, 35%);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        margin: 20px 0;
    }
    
    .timeline-content::before {
        display: none;
    }
    
    .timeline-image {
        margin: 20px 0;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

.faq-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    color: white;
}

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

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

.faq-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.2rem;
    color: hsl(180, 30%, 85%);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: hsl(180, 30%, 75%);
    --bs-accordion-border-radius: 12px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid hsl(180, 30%, 75%);
    margin-bottom: 20px;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: hsl(180, 30%, 85%);
}

.accordion-header {
    border-radius: 12px !important;
}

.accordion-button {
    background: transparent !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 20px 25px;
    border: none !important;
    box-shadow: none !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.15) !important;
    color: hsl(180, 30%, 95%) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: brightness(0) invert(1);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.05);
    color: hsl(180, 30%, 90%);
    padding: 25px;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid hsl(180, 30%, 75%);
}

.faq-highlight {
    background: linear-gradient(120deg, hsl(180, 30%, 75%) 0%, hsl(180, 30%, 85%) 100%);
    color: hsl(180, 30%, 25%);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
    
    .accordion-body {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.services-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.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(180, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-tabs .nav-link.active {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 35%);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-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.5s ease;
}

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(180, 30%, 50%);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(180, 30%, 50%), hsl(180, 30%, 35%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(180, 30%, 35%), hsl(180, 30%, 50%));
}

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

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

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

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

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

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

.service-conditions ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

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

.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 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></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: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(180, 30%, 85%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.testimonials-scroll {
    display: flex;
    flex-direction: column;
    animation: scrollTestimonials 60s linear infinite;
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    min-height: 200px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

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

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid hsl(180, 30%, 75%);
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: hsl(180, 30%, 35%);
    font-size: 1.1rem;
}

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

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

@keyframes scrollTestimonials {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-scroll:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-container {
        height: 400px;
    }
    
    .testimonial-card {
        margin: 0 10px;
        padding: 20px;
    }
}

.newsletter-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

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

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(180, 30%, 35%);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

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

.newsletter-description {
    color: hsl(180, 30%, 35%);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: center;
}

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

.benefits-list li {
    color: hsl(180, 30%, 35%);
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

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

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid hsl(180, 30%, 75%);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.email-input:focus {
    border-color: hsl(180, 30%, 50%);
    box-shadow: 0 0 0 3px rgba(77, 166, 166, 0.1);
}

.subscribe-btn {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(77, 166, 166, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 166, 166, 0.4);
    background: linear-gradient(135deg, hsl(180, 30%, 45%) 0%, hsl(180, 30%, 30%) 100%);
}

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

.privacy-note {
    font-size: 0.9rem;
    color: hsl(180, 30%, 40%);
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
    
    .subscribe-btn {
        min-width: 100%;
    }
}

.advantages-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

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

.advantages-title {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

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

.advantage-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;
}

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

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: hsl(180, 30%, 75%);
}

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

.advantage-card:hover .advantage-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, hsl(180, 30%, 35%), hsl(180, 30%, 50%));
}

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

.advantage-title {
    color: hsl(180, 30%, 35%);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.advantage-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .advantages-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .advantage-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .advantage-icon i {
        font-size: 1.8rem;
    }
    
    .advantage-title {
        font-size: 1.4rem;
    }
    
    .advantage-description {
        font-size: 1rem;
    }
}

.statistics-section {
    background: linear-gradient(135deg, hsl(180, 30%, 50%) 0%, hsl(180, 30%, 35%) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><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;
}

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

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, hsl(180, 30%, 75%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: hsl(180, 30%, 75%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

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

.stat-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: hsl(180, 30%, 75%);
}

.stat-icon {
    font-size: 3rem;
    color: hsl(180, 30%, 75%);
    margin-bottom: 20px;
    display: block;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: hsl(180, 30%, 75%);
    font-weight: 500;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

@keyframes shimmer {
    0% { opacity: 0; transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.stat-card {
    animation: countUp 0.6s ease-out forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }
.stat-card:nth-child(5) { animation-delay: 0.5s; }
.stat-card:nth-child(6) { animation-delay: 0.6s; }
.stat-card:nth-child(7) { animation-delay: 0.7s; }
.stat-card:nth-child(8) { animation-delay: 0.8s; }
.stat-card:nth-child(9) { animation-delay: 0.9s; }
.stat-card:nth-child(10) { animation-delay: 1.0s; }

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

footer {
    background: linear-gradient(135deg, hsl(180, 30%, 35%) 0%, hsl(180, 30%, 30%) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-brand h5 {
    color: hsl(180, 30%, 75%);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: hsl(180, 30%, 75%);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
    color: hsl(180, 30%, 75%);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(180, 30%, 35%) 0%, hsl(180, 30%, 40%) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid hsl(180, 30%, 75%);
}

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

.cookie-notice .btn-accept {
    background: hsl(180, 30%, 75%);
    border: none;
    color: hsl(180, 30%, 25%);
    font-weight: 600;
    padding: 0.75rem 2rem;
    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(180, 30%, 75%);
    color: hsl(180, 30%, 75%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cookie-notice .btn-learn:hover {
    background: hsl(180, 30%, 75%);
    color: hsl(180, 30%, 25%);
    transform: translateY(-2px);
}

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