/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 20px;
    font-size: 18px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Hero section */
.hero {
    background-image: url('forest.jpg.png');
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-image img {
    width: 300px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.offer {
    font-size: 18px;
}
