* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

header .logo {
    width: 80px; /* Adjust the size of the logo as needed */
    height: auto;
    margin-right: 20px;
}

header h1 {
    margin: 0;
}

section {
    padding: 20px;
    margin: 20px 0;
}

.products .product {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.products .product h3 {
    margin-bottom: 10px;
    color: #333;
}

.products .product .description {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.products .product .price {
    font-weight: bold;
    margin-top: 10px;
}

.products .product button {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.products .product button:hover {
    background: #218838;
}

.testimonials {
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
}

.testimonials blockquote {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonials cite {
    font-weight: bold;
}

.contact {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact form button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.contact form button:hover {
    background: #0056b3;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
}
