
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: #002060;
    background-color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}
.logo {
    height: 60px;
}
nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #002060;
    font-weight: bold;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 20px;
}
.hero-text {
    max-width: 400px;
}
.hero-text h1 {
    font-size: 36px;
    margin-bottom: 20px;
}
.shop-button {
    display: inline-block;
    background-color: #00c2b2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}
.hero-img img {
    max-width: 300px;
    border-radius: 10px;
}
.about, .products {
    padding: 40px 20px;
    text-align: center;
}
.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.product {
    width: 200px;
}
.product img {
    width: 100%;
    border-radius: 10px;
}
