.section-bullet-statements {
    padding: 144px 96px;
    background-color: var(--color-brown);
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 96px;
}

.bullet-statements-main-header {
    padding-bottom: 16px;
}

.bullet-statements-main-header-title {
    color: var(--color-beige);
    font-family: var(--font-heading-family), sans-serif;
    font-size: 56px;
    text-align: left;
}

#bullet-statements-main-description {
    color: var(--color-beige);
    opacity: 0.7;
}

.bullet-statements-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 24px;
}

#bullet-statements-second-button {
    background-color: #53524C;
}

#bullet-statements-second-button:hover {
    background-color: var(--color-dark-green);
}

.bullet-statements-left,
.bullet-statements-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bullet-statements-step {
    width: 100%;
    height: 196px;
    border: #494842 solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 20px;
    font-size: 16px;
    color: var(--color-beige);
}

.bullet-statements-step-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bullet-statements-step-content {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    gap: 8px;
}

.bullet-statements-step-title {
    font-weight: 600;
}

.bullet-statements-step-description {
    font-weight: 300;
    opacity: 0.7;
    padding-right: 28px;
}

.bullet-statements-step-icon {
    padding-left: 6px;
    width: 32px;
    height: 32px;
}

.bullet-statements-brackets {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 6px;
    width: 44px;
}

.bullet-statements-bracket-upper-left {
    width: 6px;
    border-top: 1px solid var(--color-beige);
    border-left: 1px solid var(--color-beige);
}

.bullet-statements-bracket-upper-right {
    width: 6px;
    border-top: 1px solid var(--color-beige);
    border-right: 1px solid var(--color-beige);
}

.bullet-statements-lower-left {
    width: 6px;
    border-bottom: 1px solid var(--color-beige);
    border-left: 1px solid var(--color-beige);
}

.bullet-statements-lower-right {
    width: 6px;
    border-bottom: 1px solid var(--color-beige);
    border-right: 1px solid var(--color-beige);
}

/* Light mode START */
.section-bullet-statements.light-mode {
    background-color: var(--color-beige);
}
.light-mode .bullet-statements-brackets {
    display: none;
}
.light-mode .button-primary {
    background: #000;
    color: #fff;
}
.light-mode .button-secondary {
    border-color: #000;
    color: #000;
}
.light-mode .bullet-statements-step {
    color: var(--color-black);
    border: 1px solid #12141720;
}
.light-mode .bullet-statements-main-header-title {
    color: var(--color-black);
}
.light-mode #bullet-statements-main-description {
    color: var(--color-black);
}
.light-mode #bullet-statements-second-button {
    background-color: var(--color-white);
}
.light-mode #bullet-statements-second-button:hover {
    background-color: initial;
}
/* Light mode END */

/* Column mode START */
.section-bullet-statements.column-mode {
    flex-direction: column;
}
.column-mode .bullet-statements-left {
    flex-direction: row;
    justify-content: space-between;
}
.column-mode .bullet-statements-right {
    flex-direction: row;
}
.column-mode #bullet-statements-main-header-title {
    color: var(--color-beige);
    text-align: start;
    width: 548px;
}
.column-mode #bullet-statements-main-description {
    color: var(--color-beige);
    opacity: 1;
}
.column-mode #bullet-statements-first-button {
    background-color: #53524C;
}
.column-mode #bullet-statements-first-button:hover {
    background-color: var(--color-dark-green);
}
.column-mode #bullet-statements-second-button {
    background-color: var(--color-white);
}
.column-mode #bullet-statements-second-button:hover {
    background-color: var(--color-secondary-bg-hover);
}
/* Column mode END */

@media (max-width: 1200px) {
    .section-bullet-statements {
        padding: 40px;
        gap: 40px;
    }
    .bullet-statements-main-header {
        width: 100%;
        font-size: 32px !important;
        line-height: 1.1 !important;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 870px) {
    #bullet-statements-first-button,
    #bullet-statements-second-button {
        width: 90%;
        font-size: 14px;
        letter-spacing: normal;
    }
}

@media (max-width: 791px) {
    .section-bullet-statements {
        flex-direction: column;
        gap: 40px;
    }
    .column-mode .bullet-statements-left {
        flex-direction: column;
    }
    .column-mode .bullet-statements-right {
        flex-direction: column-reverse;
    }
    .column-mode #bullet-statements-main-header-title {
        width: unset;
    }
    .bullet-statements-headings {
        width: 100%;
    }
    #bullet-statements-main-header-title {
        font-size: 32px;
        width: 100%;
    }
    #bullet-statements-main-description {
        font-size: 16px;
        line-height: 150%;
        width: 100%;
    }
    .bullet-statements-steps-right {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .bullet-statements-step {
        height: auto;
        gap: 24px;
    }
    .bullet-statements-buttons {
        justify-content: center;
        gap: 16px;
        padding-top: 24px;
    }
}

@media (max-width: 390px) {
    .section-bullet-statements {
        padding: 40px 16px;
        flex-direction: column;
        gap: 40px;
    }
}