body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f9fb;
}

h3 {
    text-align: center;
    margin: 15px 0;
    color: #2c3e50;
    font-size: 26px;
}

.search-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Search Bar */
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 2px solid #007bff;
    border-radius: 50px;
    padding: 5px 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#searchBar {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 50px;
}

#searchBar::placeholder {
    color: #999;
    font-style: italic;
}

#searchBtn {
    padding: 12px 22px;
    font-size: 15px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50px;
    margin-left: 8px;
    transition: 0.3s ease;
}

#searchBtn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Suggestions */
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 8px auto;
    width: 80%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 180px;
    overflow-y: auto;
}

.suggestions-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.2s ease;
}

.suggestions-list li:hover {
    background-color: #007bff;
    color: white;
}

/* Result Section */
.container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-section {
    max-width: 60%;
}

h4 {
    color: #e67e22;
    font-size: 20px;
    margin-top: 15px;
}

.brand { font-weight: bold; color: #16a085; margin: 8px 0; }
.location { font-weight: bold; color: #2980b9; margin: 10px 0; }
.contact { color: #7f8c8d; font-style: italic; margin: 12px 0; }
.contact-detail { font-size: 16px; margin-bottom: 6px; }

.image-section {
    max-width: 30%;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.brand-name {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

/* Banner Advertisement */
.banner-ad {
    margin-top: 20px;
    text-align: center;
}

.banner-ad img {
    max-width: 100%;
    border-radius: 8px;
}

/* No Result */
.no-result {
    color: red;
    font-size: 18px;
    margin-top: 12px;
    text-align: center;
}

/* Buttons */
.buttons-container {
    text-align: center;
    margin-top: 20px;
}

.buttons-container button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 15px;
    border-radius: 50px;
    cursor: pointer;
    margin: 10px;
    transition: 0.3s ease;
}

.buttons-container button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}