* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e0f7fa;
    color: #333;
}

header {
    background-color: #0077b6;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #33c9dc;
}

header .contact {
    font-size: 1.2em;
    text-align: right;
}

.logo-img {
    max-width: 250px;
    height: auto;
}

main {
    margin: 20px;
}

.products {
    text-align: center;
    margin-bottom: 30px;
}

.products h2 {
    font-size: 2.2em;
    color: #0077b6;
    margin-bottom: 20px;
}

.product-display {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.product img {
    max-width: 300px;
    height: auto;
}

.product p {
    margin-top: 10px;
    font-size: 1.1em;
}

.mascot-call {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #b3e5fc;
    padding: 20px;
    border-radius: 10px;
}

.mascot {
    max-width: 150px;
}

.call-to-action {
    text-align: center;
}

.call-to-action h3 {
    font-size: 1.8em;
    color: #0077b6;
    margin-bottom: 10px;
}

button {
    background-color: #0077b6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}

footer .socials img {
    width: 30px;
    margin: 0 10px;
}
