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

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation Bar */
nav {
    background-color: #50B6DB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    color: #ffffff;
    font-weight: bold;
}

.cta-button {
    background-color: #ffffff;
    color: #50B6DB;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 20px;
}

.hero-section h1 {
    font-size: 24px;
    color: #333333;
}

.main-image {
    width: 300px;
    margin-top: 10px;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.blue-button {
    display: inline-block;
    background-color: #ADD8E6;
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

/* Product Section */
.product-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ADD8E6;
    padding: 20px 0;
}

.product {
    text-align: center;
}

.product img {
    width: 250px;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #808080;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #ffffff;
}

.footer-section {
    text-align: center;
    width: 33%;
}

.footer-logo img {
    height: 50px;
}