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

header {
    background: #005288;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
}

section {
    padding: 20px;
    text-align: center;
}

#app-screenshot {
    width: 90%;
    max-width: 400px;
}

#biking-image {
    width: 100%;
    height: auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #59c7f9;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#contact {
    margin-bottom: 100px; /* Adjust the value based on the footer's height */
}

/* FAQ Section Styling */
#faq {
    background-color: #f0f0f0;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    max-width: 800px; /* Limiting width for better readability */
}

.faq-question {
    width: 100%;
    background-color: #0056b3;
    color: white;
    padding: 10px 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #003580; /* Darken the button on hover */
}

.faq-answer {
    background-color: white;
    overflow: hidden;
    max-height: 0; /* Start with collapsed answers */
    transition: max-height 0.5s ease-out;
    padding: 0 15px;
    border-left: 3px solid #0056b3;
}

/* Initial style to avoid content flash before script loads */
.faq-answer p {
    margin: 10px 0;
}

/* JavaScript to toggle answers */
.faq-question::after {
    content: '\002B'; /* Add a '+' symbol */
    float: right;
    font-size: 1.5em;
}
