:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #292929;
    --color-text-text-450: #64748b;
    --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: 38px 0;
}

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

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

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

.left-side img {
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 0.5rem;
    filter: brightness(0.95);
}

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

.info-badge {
    display: inline-block;
    background-color: var(--badge-bg);
    color: #292929;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 5px;
    margin-bottom: 0;
    width: fit-content;
}

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

.paragraph-body {
    margin: 0.625rem 0 1.25rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #161616;
    font-family: var(--second-family);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list div {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-text {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1rem;
    color: #292929;
    margin: 0;
}

.checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 25px;
    flex-shrink: 0;
}

.checkmark svg {
    display: block;
}

.learn-btn {
    width: 143px;
    display: inline-block;
    background-color: #4fb893;
    color: white;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-btn:hover {
    background-color: #26b890;
}

@media (max-width: 991.98px) {
    .construction-container {
        flex-direction: column;
        gap: 2rem;
    }

    .left-side,
    .right-side {
        max-width: 100%;
        width: 100%;
    }

    .header-title {
        font-size: 2rem;
    }

    .left-side img {
    height: auto;
}
}
