body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #00204a;
    color: white;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#hero {
    background: #12c7ff;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #ffffff;
    color: #00204a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

#products {
    padding: 50px 0;
    background: #fff;
    text-align: center;
}

.product-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.product {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.product img {
    width: 100px;
    height: auto;
}

.price {
    font-weight: bold;
    color: #00204a;
}

#about, #contact {
    padding: 50px 0;
    text-align: center;
    background: #e0e0e0;
}

footer {
    background: #00204a;
    color: white;
    text-align: center;
    padding: 20px 0;
}
