.hero-header {
    background: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.search-container {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 20px;
    width: 300px;
}

.search-container input {
    border: none;
    background: transparent;
    margin-left: 10px;
    outline: none;
    width: 100%;
}