.info-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    max-width: 700px;
    margin: 0 auto;
}

.info-image {
    padding: 20px;
}

.info-image img {
    max-width: 200px;
}

.info-text {
    color: white;
    text-align: justify;
}

.info-buttons {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.info-buttons button {
    display: inline-block;
    margin: 4px 4px;
    text-decoration: none;
    width: 100%;
}

/* Media query for mobile view */
@media (max-width: 700px) {
    .info-container {
        flex-wrap: wrap;
    }

    .info-image,
    .info-text {
        flex: 1 1 100%;
    }

    .info-text {
        text-align: justify;
    }

    .info-buttons {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-container {
    color: white;
    text-align: center;
    margin: 50px auto;
    max-width: 800px;
}

.faq-item {
    background-color: #333;
    color: white;
    margin: 0 10px 8px 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    background: none;
    border: none;
    color: white;
    text-align: left;
    padding: 15px;
    font-size: 16px;
    cursor: pointer;
}

.faq-item button:hover {
    background-color: #444;
}

.faq-content {
    text-align: justify;
    display: none;
    padding: 15px;
    background-color: #222;
    color: white;
}
