.hb-a1ac7f7d-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.hb-col-left {
    flex: 1 1 45%;
    min-width: 300px;
}

.hb-col-right {
    flex: 1 1 45%;
    position: relative;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hb-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hb-sub-headline {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hb-description {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hb-features-list {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hb-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hb-feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #0b59b5;
}

.hb-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #0b59b5;
}

.hb-feature-title {
    font-size: 12px;
    font-weight: 600;
}

.hb-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0b59b5;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hb-button:hover {
    opacity: 0.9;
}

.hb-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.hb-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: #ffffff;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #0b59b5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateX(-30%);
}

@media (max-width: 768px) {
    .hb-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: -60px;
        margin-bottom: 20px;
    }
}