/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #0d121e;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(var(--secondary-color-rgb, 0, 192, 255), 0.1);
    border-color: rgba(var(--secondary-color-rgb, 0, 192, 255), 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.benefit-description {
    color: #b0b7c3;
}