body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: white;
    border-bottom: 1px solid #ddd;
}

header img.logo {
    height: 60px;
}

.hero-section {
    position: relative;
    background: url('../images/banner.png') center/cover no-repeat;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.search-box {
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 10px 40px;
    width: 80%;
    max-width: 840px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 20px;
}

.search-box input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 10px;
    font-size: 16px;
}

.search-box button {
    background-color: #ff8c1a;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
}

.accordion-container {
    position: relative;
    bottom: 50px;
    background: white;
    margin: -80px auto 50px auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.custom-button {
    background-color: #ff8c1a;
    color: white;
    border-radius: 16px;
    padding: 20px 20px;
    margin: 10px;
    transition: background-color 0.3s;
    height: 80px;
    width: 80px;
    border: 1px solid #ffffff;
    box-shadow: 0 6px 2px rgba(0, 0, 0, 0.15);
}

.custom-button:hover {
    background-color: #e67300;
    color: white;
}


@media(max-width: 768px) {
    .search-box {
        flex-direction: column;
        padding: 20px;
    }

    .search-box input {
        width: 100%;
        margin-bottom: 10px;
    }

    .search-box button {
        width: 100%;
    }

    header img.logo {
        height: 45px;
    }
}