.hero-43-wrapper {
    width: 100%;
    padding: 120px 40px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top left, #F4F9FA 0%, #FFFFFF 100%);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.hero-43-container {
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 60px;
}

.hero-43-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-43-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #A6DFB5;
    background-color: #E9F7EF;
    color: #51C281;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-43-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-43-title {
    font-size: clamp(40px, 4.5vw, 64px);
    line-height: 1.15;
    font-weight: 700;
    color: #1A2A3A;
    margin: 0 0 30px 0;
    letter-spacing: -0.03em;
}

.hero-43-description {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.6;
    color: #556B82;
    margin: 0 0 40px 0;
    max-width: 90%;
    font-weight: 400;
}

.hero-43-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-43-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero-43-btn-primary {
    background-color: #51C281;
    color: #ffffff;
    border: 1px solid transparent;
}

.hero-43-btn-primary:hover {
    background-color: #3fa169;
    color: #ffffff;
}

.hero-43-btn-secondary {
    background-color: #ffffff;
    color: #1A2A3A;
    border: 1px solid #E2E8F0;
}

.hero-43-btn-secondary:hover {
    background-color: #F8FAFC;
    border-color: #CBD5E1;
    color: #1A2A3A;
}

.hero-43-image-col {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-43-image-wrapper {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    position: relative;
    aspect-ratio: 4/3;
}

.hero-43-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 992px) {
    .hero-43-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-43-content,
    .hero-43-image-col {
        width: 100%;
        flex: 1 1 100%;
    }
    
    .hero-43-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-43-wrapper {
        padding: 40px 20px;
    }
    
    .hero-43-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-43-btn {
        width: 100%;
    }
}