.mobile-app-section {
    background-color: var(--primary);
    width: 100%;
    overflow: hidden;
    padding-top: 60px;

}

.mobile-mockup {
    max-width: 450px;
    /* Adjust this to make image smaller/larger */
    height: 350px !important;
    /* This makes the phone look like it's sitting on the bottom edge */
    margin-bottom: -10px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.mobile-app-section h2 {
    line-height: 1.3;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.app-buttons {
    margin-bottom: 15px;
}

.app-buttons .btn {
    border-radius: var(--borderRadius-default);
    font-weight: 600;
    padding: 12px 25px;
    transition: transform 0.2s ease;
}

.app-buttons .btn:hover {
    transform: translateY(-3px);
    background-color: #f8f9fa;
}

/* Responsive adjustment */
@media (max-width: 991px) {
    .mobile-mockup {
        max-width: 300px;
        margin-top: 40px;
    }

    .mobile-app-section {
        padding-bottom: 60px;
    }
}
