body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdf6f6;
    color: #333;
}

header {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active,
nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: #ffe4e1;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    margin-top: 20px;
    text-decoration: none;
}

.content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.product {
    text-align: center;
    max-width: 200px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 10%;
}

footer{
    background-color: #000;
    color: white;
    text-align: center;
    margin: 1px;
    padding: 1px;
}