body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.faq-container h1 {
    text-align: center;
    color: #333;
}

.faq {
    margin-bottom: 20px;
}

.question {
    padding: 15px;
    background: #007BFF;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.answer {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #007BFF;
    border-radius: 0 4px 4px 4px;
}

.faq.active .answer {
    display: block;
}

.download-app {
    text-align: center;
    margin-top: 30px;
}

.download-app a {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.download-link img, .download-button img {
    max-width: 200px;
    transition: transform 0.3s;
}

.download-link img:hover, .download-button img:hover {
    transform: scale(1.1);
}

/* Tooltip styling */
.tooltip {
    visibility: hidden;
    width: 160px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the link */
    left: 50%;
    margin-left: -80px; /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

.download-link:hover .tooltip, .download-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
