
    :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;
        --primary: #4dc0b5;
    }

    .be-prepared-section {
        position: relative;
        width: 100%;
        min-height: 622px;
        padding: 48px clamp(16px, 10vw, 252px);
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-family: var(--body-font);
        color: white;
        overflow: hidden;
    }

    .background-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

    .overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.55);
        z-index: 2;
    }

    .content-container {
        position: relative;
        z-index: 10;
        max-width: 700px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge {
        background-color: #D5F3E8;
        color: #292929;
        font-size: 16px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 6px;
        margin-bottom: 16px;
        font-family: var(--font-family);
        display: inline-block;
    }

    .heading {
        font-weight: 700;
        font-size: clamp(24px, 3vw, 42px);
        line-height: 1.3;
        margin: 0 0 16px 0;
        max-width: 700px;
        font-family: var(--second-family);
    }

    .description {
        font-weight: 500;
        font-size: clamp(16px, 2vw, 26px);
        max-width: 664px;
        margin: 0 0 24px 0;
        line-height: 1.25;
        font-family: var(--second-family);
    }

    .cta-button {
        background-color: #4FB893;
        color: white;
        border: none;
        padding: 12px 28px;
        border-radius: 16px;
        font-weight: 500;
        font-size: 21px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        text-decoration: none;
        display: inline-block;
        font-family: var(--font-family);
        text-align: center;
        line-height: 1.2;
        white-space: nowrap;
    }

    .cta-button:hover {
        background-color: #26b890;
    }

    @media (max-width: 640px) {
        .content-container {
            max-width: 90%;
        }

        .be-prepared-section {
            padding: 32px 16px;
        }
    }

    @media (max-width: 485px) {
        .badge {
            font-size: 14px;
            padding: 4px 10px;
        }
        .heading {
            font-size: 28px;
        }
        .description {
            font-size: 16px;
        }
        .cta-button {
            width: auto;
            font-size: 20px;
            padding: 10px 24px; 
        }
    }