.hero-widget-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
}

.hero-heading, .hero-bold-heading {
    font-size: 48px;
    line-height: 52.8px;
    font-family: 'Noto Sans', sans-serif;
}

.hero-heading {
    font-weight: 250;
}

.hero-bold-heading {
    font-weight: 700;
}

.hero-content {
    flex: 1;
    max-width: 35%;
}

.hero-content h2 {
    font-size: 32px;
    font-weight: bold;
}

.hero-button {
    display: inline-block;
    background-color: #ff5a3c;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
}

.hero-button .arrow {
    margin-left: 5px;
}

.hero-image-container {
    flex: 1;
    position: relative;
    max-width: 70%;
}

.hero-image {
    width: 100%;
    border-radius: 10px;
}

.hero-badge {
    position: absolute;
    bottom: 25%;
    left: 5%;
    color: white;
    padding: 31px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    width: 65%;
    opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.hero-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    margin-right: 10px;
    position: absolute;
    right: 20px;
    top: -20%;
}

.hero-badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 54.48px;
    font-family: 'Noto Sans', sans-serif;
}

.badge-text {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Noto Sans', sans-serif;
    line-height: 44.8px;
}

.hero-percentage {
    font-size: 66px;
    font-weight: 700;
    line-height: 92.4px;
    font-family: 'Noto Sans', sans-serif;
}

@media screen and (max-width: 768px) {
    .hero-content, .hero-image-container {
        max-width: 100%;
    }
    .hero-badge {
        bottom: 0;
        left: 10%;
        width: 75%;
    }
    .badge-title {
        font-size: 30px;
    }
    .badge-text {
        font-size: 20px;
    }
    .hero-percentage {
        font-size: 50px;
    }
}