.download-section {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    padding: 30px 0;
}
.download-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.download-section p {
    font-size: 1rem;
    margin-bottom: 20px;
}
.download-buttons .btn {
    margin: 0 5px;
    padding: 8px 20px;
    font-size: 0.9rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    text-decoration: none;
}
.download-buttons .btn:hover {
    transform: translateY(-3px);
}
.btn-app-store {
    background-color: #000;
    color: #fff;
    border: none;
}
.btn-google-play {
    background-color: #fff;
    color: #000;
    border: none;
}
.phone-image {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    display: block;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}