.footer-section h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: bold;
}

.google-play {
    background: linear-gradient(135deg, #34a853, #4285f4, #fbbc04, #ea4335);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.95;
}


.app-store {
    background-color: #000;
    color: #fff;
}

.app-btn:hover {
    opacity: 0.8;
}
