* {
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merriweather", serif;
    background-color: #1E2C22;
    color: #fff;
    min-height: calc(100vh - 100px);
}

li[data-list="bullet"] {
  list-style: disc;
}
li[data-list="ordered"] {
  list-style: decimal;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

.brand-logo {
    display: block;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.last-updated {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    font-style: italic;
}

.faq-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.10);
    margin-bottom: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 14px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.question-icon {
    background-color: #96D38C;
    color: #2d4a3a;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 11px;
    flex-shrink: 0;
}

.question-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    flex: 1;
    color: #fff;
}

.chevron {
    transition: transform 0.3s ease;
    margin-left: 10px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.faq-item.active .chevron {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    padding-left: 68px;
    padding-right: 30px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 100%;
    padding-bottom: 20px;
}

.faq-answer {
    color: #e0e0e0;
    line-height: 22px;
    font-size: 14px;
}
.mt-140 {
    margin-top: 40px;
    margin-bottom: 40px;
}


.content-block {
    margin-top: 20px;
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    .mt-140 {
        margin-top: 140px;
        margin-bottom: 40px;
    }

}
