.benefits-app-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    position: relative;
    margin-bottom: 100px;
}

.wave-divider {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 1;
    background: url('../img/wave-divider-blue.svg') no-repeat;
    background-size: 100% 100%;
}

.wave-divider::before,
.wave-divider::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    top: 0;
    background-size: 100% 100%;
}

.wave-divider::before {
    opacity: 0.7;
    animation: wave 15s linear reverse infinite;
}

.wave-divider::after {
    opacity: 0.5;
    animation: wave 12s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

.benefits-content h2 {
    color: #333;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
}

.benefits-content h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #04befe);
    margin-top: 0.5rem;
}

.benefits-features .feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: white;
}

.benefits-features .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefits-features .feature-item i {
    font-size: 1.5rem;
    color: white;
    margin-right: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 8px;
}

.app-showcase img {
    max-width: 50%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: block;
}

.app-showcase img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.app-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.app-buttons .btn {
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.app-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #343a40;
}

@media (max-width: 768px) {
    .benefits-app-section {
        padding: 40px 0;
    }
    
    .app-showcase img {
        max-width: 100%;
    }
    
    .app-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}