#benefits {
    background: linear-gradient(45deg, #0a0a0a, #1a1a1a);
}

.neon-text {
    color: #00eaff;
    border-color: #0a0a0a;
    text-shadow: 0 0 5px #fff200, 0 0 10px #00656e;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 234, 255, 0.2);
}

.benefit-icon {
    
    margin: 0 auto 20px;
    overflow: hidden;
    border: 2px solid #00eaff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 0 10px #00eaff;
}

.benefit-icon img {
    width: 300px;
    height: 100%;
    object-fit: cover;
    border-radius: 90%;
}

.benefit-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 20px;
    opacity: 0.8;
}

@keyframes neonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.neon-text {
    animation: neonPulse 2s infinite;
}
