body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

header {
    background: rgb(32, 32, 63);
    color: white;
    padding: 20px;
    
    }
    .logo img{
        text-align: left;
    }
    .logo h1 {
    margin: 0;
    font-size: 3.5em;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
    
    .logo p {
    margin: 5px 0 0;
    font-size: 1.2em;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    }
    
    nav ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    }
    
    nav ul li {
    margin: 0 15px;
    }
    
    nav ul li a {
    color: rgb(184, 175, 175);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
    }
    
    nav ul li a:hover {
    background: aquamarine;
    }
main {
    display: flex;
    flex-direction: column;
    align-items:center;
    padding: 2em;
}

section {
    background-color: #fff;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-top: 0;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: grey;
    border-radius: 10px;
}

.product {
    margin: 20px;
    width: calc(33.33% - 20px);
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

#contact-form {
    background-color: #fff;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    display: block;
    margin-bottom: 10px;
}

#contact-form input, #contact-form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

#contact-form input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 10px;
    border: none;
    cursor: pointer;
}

#contact-form input[type="submit"]:hover {
    background-color: #555;
}
footer {
    background-color: #333;
    color: #fff;
    padding: 2em;
    text-align: center;
}
.footer-links, .footer-contact, .footer-social {
    flex-basis: 30%;
}

.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-social li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.fa {
    margin-right: 10px;
}
.footer-links, .footer-contact, .footer-social {
    flex-basis: 30%;
}

.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-social li {
    margin-bottom: 10px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.fa {
    margin-right: 10px;
}


