.hero-section {
    position: relative;
    height: 450px;
    background-image: url('/images/your-website/support-hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}

.support-search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    width: 450px;
    display: flex;
    align-items: center;
}

.search-input-wrapper svg {
    position: absolute;
    left: 14px;
    z-index: 1;
}

.search-input {
    display: flex;
    padding: 14px 14px 14px 45px;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    border-radius: 2px 0 0 2px;
    background: #F4F4F4;
    overflow: hidden;
    color: rgba(19, 19, 19, 0.30);
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: none;
}

.search-button {
    border-radius: 0 2px 2px 0;
    background: #BE930B;
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    color: #131313;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #e69500;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-container {
        max-width: 90%;
    }
    
    .search-input-wrapper {
        width: 100%;
        max-width: 380px;
    }
    
    .search-input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }
    
    .search-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .search-input-wrapper svg {
        left: 12px;
        width: 16px;
        height: 16px;
    }
}