.download-button {
    width: 100%;
    padding: 20px;
    margin: 10px 0;
    font-size: 1.2em;
    text-align: center;
    color: white;
}

.download-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100px;
}

.known-issues h2 {
    margin-bottom: 10px;
}

.known-issues .issue-item {
    margin-bottom: 10px;
}

.card-body {
    background-color: #f9f9f9;
}

#accordionFaq {
    .accordion-header {
        margin-bottom: 8px;
    }

    .accordion-title {
        position: relative;
        display: block;
        padding: 8px 0 8px 50px;
        background:rgb(18, 153, 231);
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        width: 100%;
        text-align: left;
        transition: all .4s ease-in-out;
    }

    .accordion-title i {
        position: absolute;
        width: 40px;
        height: 100%;
        left: 0;
        top: 0;
        color: #fff;
        background: radial-gradient(rgba(#213744, .8), #213744);
        text-align: center;
        border-right: 1px solid transparent;
    }

    .accordion-title:hover {
        padding-left: 60px;
        background: #213744;
        color: #fff;
    }

    .accordion-title:hover i {
        border-right: 1px solid #fff;
    }

    [aria-expanded="true"] {
        background:rgb(84, 184, 106);
        color: #000;
        border: 1px solid #ccc;
        /* Borda fina na área expandida */
    }

    [aria-expanded="true"] i {
        color: #000;
        background: #24b365;
    }

    [aria-expanded="true"] i:before {
        content: "\f068";
    }

    .accordion-body {
        padding: 40px 55px;
        border: 1px solid #ccc;
        /* Borda fina ao redor do conteúdo */
        border-radius: 8px;
    }
}