.d-flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    transform: translateY(-3px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}

h1 {
    font-size: 1.9em;
}

/* 32px (if base font-size is 16px) */
h2 {
    font-size: 1.8em;
}

/* 24px */
h3 {
    font-size: 1.7em;
}

/* 18.72px */
h4 {
    font-size: 1.6em;
}

/* 16px */
h5 {
    font-size: 1.5em;
}

/* 13.28px */
h6 {
    font-size: 1.5em;
}

/* 10.72px */
p {
    display: block;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

ul {
    list-style: none;
}



.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.m-auto {
    margin: auto;
}

.p-0 {
    padding: 0;
}

.m-0 {
    margin: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.fw-bold {
    font-weight: bold;
}

.fw-light {
    font-weight: 300;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: #007bff;
}

/* Bootstrap blue */
.text-danger {
    color: #dc3545;
}

/* Red */
.bg-primary {
    background-color: #007bff;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    /*background: linear-gradient(135deg, #121212, #1E1E1E);*/
    background-color: #000;
    color: #ffcc00;
}

.bg-dark a {
    color: #ffcc00;
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: none;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.border {
    border: 1px solid #ddd;
}

.rounded {
    border-radius: 10px;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* FAQ Container */
.faq-container {
    /*font-family: Arial, sans-serif;*/
    text-decoration: none;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    text-align: left;
}

/* FAQ Question (Label) */
.faq-question {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: #4a4a4a;
}

.faq-question:hover {
    color: #000;
}

/* Hide the checkbox */
.faq-toggle {
    display: none;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Expand FAQ Answer when checkbox is checked */
.faq-toggle:checked~.faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    padding: 15px 0;
}

/* Add a small arrow indicator */
.faq-question::after {
    content: "▶";
    float: right;
    transition: transform 0.3s ease;
}

.faq-toggle:checked~.faq-question {
    color: #000;
}

.faq-toggle:checked~.faq-question::after {
    transform: rotate(90deg);
}