* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.hide {
    display: none;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    position: relative;
    height: 400px;
    background: url('hero-background.jpg') no-repeat center center/cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
}

.search-bar {
    display: flex;
    margin-top: 20px;
}

.search-bar input,
.search-bar select,
.search-bar button {
    padding: 10px;
    margin: 0 5px;
    font-size: 16px;
}

.categories {
    padding: 40px;
    text-align: center;
}

.category-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.category {
    width: 200px;
    margin: 20px;
}

.category img {
    width: 100%;
    border-radius: 8px;
}

.category p {
    margin-top: 10px;
    font-size: 16px;
}

.reviews {
    padding: 40px;
    background-color: #fff;
    text-align: center;
}

.review {
    margin-bottom: 20px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

footer h3 {
    margin-bottom: 10px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-contacts p {
    margin-top: 10px;
}
