.search-section {
    margin-top: 20px;
}

/* Remove default form margins */
.search-section form {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.search-box {
    padding: 12px 15px;
    width: 350px;
    max-width: 70%;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
    color: #333;
}

.search-btn {
    padding: 12px 20px;
    border: none;
    background-color: #3498db;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.search-btn:hover {
    background-color: #2980b9;
}