.page_body_wrapper {
    position: relative;
    margin-top: 120px;
    text-align: center;
    padding-top: 2px;
    margin-bottom: 20px;
    padding-bottom: 40px;
}

.page_body_wrapper .body_header h1 {
    font-size: 48px;
}

.faq_item {
    text-align: left;
    margin-left: 10%;
    margin-right: 10%;
}

.question {
    display: flex;
}

    .question .Q_starter {
        margin-right: 10px;
        font-weight: bold;
    }

.answer {
    display: flex;
}

    .answer .A_starter {
        text-indent: 40px;
        margin-right: 10px;
        font-weight: bold;
    }

	.answer .A_link {
        flex-direction: column;
	}

.payment_link_button {
    display: flex;
    flex-direction: row;
    gap: 5px;
    height: 80px;
    border: 2px solid lightgray;
    width: 95%;
    border-radius: 20px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    color: #2e2e2e;
    text-decoration: none;
    margin-top: 20px;
}

.payment_link_button:hover {
    background-color: lightgray;
}

.icon_wrapper {
    padding-left: 10px;
    display: block;
}

.payment_link_button img {
    height: 40px;
    width: auto;
}

.payment_link_button p {
    word-break: break-all;
}