/* Home - High Standards */

.high-standards {}

.high-standards .content {
    margin-top: -1px;
    background-color: #ff7047;
    color: #ffffff;
    padding: 80px 128px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 64px;
}

.high-standards .content .column {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.high-standards .content .column.right {
    margin-top: 35px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .high-standards .content {
        grid-template-columns: 1fr;
        padding: 40px 24px; /* Optional: Adjust padding for smaller screens */
    }

    .high-standards .content .column {
        grid-column: span 1;
    }
}

.high-standards .content h2 {
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.high-standards .content h3 {
    font-size: 48px;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: left;
    max-width: 428px;
    @media (max-width: 768px) {
        position: relative;
        max-width: 80%;
        font-size: 32px;
    }
}

.high-standards .content p,
.high-standards .content li {
    font-weight: 700;
    line-height: 1.4em;
}

@media (max-width: 768px) {
    .high-standards .content p,
    .high-standards .content li {
        font-size: 0.8em;
        line-height: 1.2em;
    }
}

.high-standards .content ul {
    margin: 0;
    margin-left: 30px;
    padding: 0;
}

.high-standards .content li {
    list-style: none;
    text-indent: -30px;
    margin-bottom: 8px;
}

.high-standards .content li::before {
    content: '';
    display: inline-block;
    height: 18px;
    width: 18px;
    background-image: url('img/icon-bullet.svg');
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 8px;
}