:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #0f172a;
    --color-text-text-450: #64748b;
    --color-text-text-400: #94a3b8;
    --badge-bg: #d8f3e5;
    --primary: #4dc0b5;
    --section-bg: #ffffff;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--section-bg);
    font-family: var(--body-font);
}

.construction-section {
    width: 100%;
    background-color: #f5f5f5;
    padding: 48px 0 48px 0;
    margin-top: 64px;
}

.construction-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    gap: 48px;
    align-items: center;
}

.right-side {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.construction-section .info-badge {
    display: inline-block;
    background-color: var(--badge-bg);
    color: #292929;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 5px;
    margin-bottom: 16px;
    white-space: nowrap;
    max-width: max-content;
}

.construction-section .header-title {
    margin: 0 0 20px 0;
    font-family: var(--second-family);
    font-size: 42px;
    font-weight: 700;
    color: #292929;
    line-height: 1.3;
}

.construction-section .paragraph-body {
    margin: 10px 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #161616;
    text-align: left;
    font-family: var(--second-family);
}

.construction-section .feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-text {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #292929;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 24px;
    display: inline-block;
    line-height: 24px;
    user-select: none;
    flex-shrink: 0;
}

.left-side {
    flex: 1;
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-wrapper {
    width: 100%;
    display: flex;
}

.construction-section .left-side img {
    /* width: 690px;
    height: 650px; */
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    filter: brightness(0.95);
}

.paragraph-body,
.feature-text {
    display: block;
}

/* MEDIA QUERIES */
@media (max-width: 991.98px) {
    .construction-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 8px;
        align-items: flex-start;
    }

    .construction-section .left-side img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 640px;
        border-radius: 8px;
    }

    .header-title {
        font-size: 42px;
        line-height: 130%;
    }

    .paragraph-body {
        font-size: 16px;
    }

    .feature-text {
        font-size: 16px;
    }

    .info-badge {
        font-size: 14px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .construction-section {
        padding-top: 48px;
        padding-bottom: 0;
    }

    .construction-section .header-title {
        font-size: 32px;
    }

    .construction-section .left-side img {
        width: 424px;
        height: 444px;
        max-height: 444px;
    }
}

@media (max-width: 320px) {
    .construction-section .left-side img {
        max-height: 400px;
        width: 100%;
        height: auto;
        padding-bottom: 8px;
    }
}
