body {
    font-family: 'Arial', sans-serif;
    background-color: #fff7f1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #ff5722;
    color: #fff;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.deals {
    text-align: center;
    padding: 30px 0;
}

.deal-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.deal-item {
    background-color: #ffe0b2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
}

.deal-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.deal-item h3 {
    color: #e65100;
    margin: 10px 0 5px;
}

.deal-item p {
    color: #795548;
    margin-bottom: 10px;
}

footer {
    background-color: #ff5722;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}
