.chb-103-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 60px;
    background-color: #EEF5F4;
    border-radius: 16px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.chb-103-content {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chb-103-image {
    flex: 1 1 340px;
    max-width: 520px;
}

.chb-103-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Badge */
.chb-103-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1.5px solid #3B828C;
    border-radius: 999px;
    background-color: rgba(59, 130, 140, 0.1);
    color: #3B828C;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.chb-103-badge-icon {
    font-size: 16px;
    line-height: 1;
}

.chb-103-badge svg {
    width: 16px;
    height: 16px;
    fill: #3B828C;
}

/* Heading */
.chb-103-heading {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #4A4A4A;
    margin: 0;
}

/* Subheading */
.chb-103-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #6B9A76;
    margin: 0;
}

/* Description */
.chb-103-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4A4A4A;
    margin: 0;
}

/* Buttons */
.chb-103-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.chb-103-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    line-height: 1;
}

.chb-103-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.chb-103-btn--primary {
    background-color: #3B828C;
    border-color: #3B828C;
    color: #ffffff;
}

.chb-103-btn--secondary {
    background-color: transparent;
    border-color: #4A4A4A;
    color: #4A4A4A;
}

.chb-103-btn-icon {
    font-size: 15px;
    line-height: 1;
}

.chb-103-btn-icon svg {
    width: 15px;
    height: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .chb-103-wrap {
        padding: 40px;
        gap: 32px;
    }
    .chb-103-heading {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .chb-103-wrap {
        flex-direction: column;
        padding: 32px 24px;
        gap: 28px;
    }
    .chb-103-image {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .chb-103-heading {
        font-size: 32px;
    }
    .chb-103-buttons {
        flex-direction: column;
    }
    .chb-103-btn {
        justify-content: center;
    }
}
