.pd-bc532256-hero {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pd-bc532256-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
}

.pd-bc532256-column {
    flex: 1;
    min-width: 280px;
    box-sizing: border-box;
}

.pd-bc532256-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    box-sizing: border-box;
}

.pd-bc532256-badge {
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pd-bc532256-title {
    margin: 0;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
}

.pd-bc532256-subhead {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.pd-bc532256-search-form {
    display: flex;
    align-items: stretch;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.pd-bc532256-input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 16px 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #334155;
    border-radius: 8px 0 0 8px;
    box-sizing: border-box;
    width: 100%;
}

.pd-bc532256-btn {
    border: none;
    outline: none;
    color: #FFFFFF;
    padding: 16px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 0 8px 8px 0;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.pd-bc532256-media {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    box-sizing: border-box;
}

.pd-bc532256-image-wrapper {
    position: relative;
    max-width: 100%;
    animation: floatTechnician 6s ease-in-out infinite;
    box-sizing: border-box;
}

.pd-bc532256-image-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes floatTechnician {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .pd-bc532256-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 10px;
    }
    .pd-bc532256-column {
        min-width: 0;
        width: 100%;
    }
    .pd-bc532256-content {
        align-items: center;
    }
    .pd-bc532256-title {
        font-size: 32px;
    }
    .pd-bc532256-search-form {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: none;
        gap: 12px;
        width: 100%;
    }
    .pd-bc532256-input {
        border-radius: 8px;
        width: 100%;
    }
    .pd-bc532256-btn {
        border-radius: 8px;
        width: 100%;
    }
}
