.header-banner-message {
    background: #222;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}

.header-banner-content a {
    color: #fff;
    text-decoration: underline;
}

.question-link {
    font-weight: bold;
}

.question-link:hover {
    color: #c9002d;
}

.answer-pu-brief {
    padding-left: 20px;
}

.answer-pu-brief .answer-pu-list {
    list-style-type: circle;
    line-height: 25px;
}

.pu-sub-list {
    padding-left: 30px;
    margin: 5px;
}

.pu-sub-list li {
    list-style-type: square;
}

.strong-text {
    font-weight: 600;
}

.faq .link {
    color: #c9002d;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-top: 1%;
    margin-bottom: 25%;
}
.dropdown figure{
    width: 69px;
}

.download_button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    background-color: white; 
    transition: background-color 0.3s, border-color 0.3s;
    white-space: nowrap; 
}
.download_button span{
    text-align: center;
}

/* .download_button figure {
    margin: 0;
    margin-right: 8px;
} */

.arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f8f8f8;
    min-width: 80%; 
    z-index: 1;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 2px;
    margin-left: 45px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    font-family: "Titillium Web", sans-serif;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #e0e0e0;
    border-radius: 5px;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}
a.download_button{
    width: 230px;
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    .download_button .quickstart {
        justify-content: center; 
        width: auto;
    }

    .dropdown-content {
        min-width: 79%;
    }
}