<style>
/* Hero Section Styling */
.hero-section {
    background: url('your-hero-background.jpg') no-repeat center center/cover;
    height: auto; /* Adjust based on content */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

/* Dropdown Container */
.dropdown-container {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

/* Dropdown Label */
.dropdown-label {
    font-weight: bold;
    margin-right: 10px;
    color: #333;
}

/* Dropdown Select */
.dropdown-select {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    appearance: none;
    background: #fff;
    color: #333;
    margin-right: 10px;
    outline: none;
    cursor: pointer;
}

/* Get Started Button Styling */
.get-started-button {
    background-color: #b10000; /* Red button */
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    text-align: center;
}

.get-started-button:hover {
    background-color: #7a0000; /* Darker red on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
</style>