/* ═══════════════════════════════════════
   GENERIC PAGE (About Us, etc.)
═══════════════════════════════════════ */
.heet-page {
    padding-top: 60px;
    padding-bottom: 100px;
}

.heet-page__layout {
    display: flex;
    justify-content: space-between;
    direction: ltr;
    text-align: left;
    gap: 40px;
}

/* LEFT SIDE - TITLE */
.heet-page__left {
    flex: 0 0 auto;
}

.heet-page__title {
    font-size: 23px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

/* RIGHT SIDE - CONTENT */
.heet-page__right {
    flex: 0 1 700px;
}

.heet-page__content {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
}

/* Usually, Zid page content is inserted as standard HTML. 
   We reset margins for paragraphs. */
.heet-page__content p {
    margin-top: 0;
    margin-bottom: 24px;
}

.heet-page__list ul {
    margin: 0;
    padding: 0;
    list-style-type: disc;
    padding-left: 20px;
}

.heet-page__list li {
    margin-bottom: 6px;
}

.heet-page__content p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .heet-page__layout {
        flex-direction: column;
        gap: 30px;
    }

    .heet-page__left {
        flex: none;
    }

    .heet-page__title {
        font-size: 18px;
        margin-bottom: 0;
    }
}

/* ═══════════════════════════════════════
   ACCORDION (Terms & Conditions, etc.)
═══════════════════════════════════════ */
.heet-accordion--fullwidth {
    width: 100%;
    direction: ltr;
    text-align: left;
}

.heet-accordion__item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
}

.heet-accordion__label {
    flex: 0 0 45%;
    font-size: 23px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
}

.heet-accordion__content {
    flex: 1;
    display: none;
    padding: 0 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    text-align: left;
    direction: ltr;
}

.heet-accordion__content p {
    margin: 0;
}

.heet-accordion__item.is-open .heet-accordion__content {
    display: block;
}

.heet-accordion__icon {
    flex: 0 0 auto;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
    color: #000;
    cursor: pointer;
    user-select: none;
}