/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.conversion-rate {
    background: #16213e;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    border: 1px solid #2d3748;
}

.conversion-rate h3 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.conversion-rate p {
    color: #009fe3;
    font-size: 1.1em;
    font-weight: 500;
}
