/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

/* Container styles */
.container {
    width: 80%;
    margin: 0 auto;
}

/* Header styles */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
    width: 150px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.search-bar {
    float: right;
}

.search-bar input[type="text"] {
    padding: 8px;
    border: 1px solid #ccc;
}

.search-bar button {
    padding: 8px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

/* Banner styles */
.banner {
    margin-top: 20px;
}

.banner .cta-button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

/* Featured Products styles */
.featured-products {
    margin-top: 40px;
}

.featured-products h2 {
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* About Us styles */
.about-us {
    margin-top: 40px;
}

.about-us .team-image {
    margin-top: 20px;
}

.about-us .link {
    display: inline-block;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
}

/* Testimonials styles */
.testimonials {
    margin-top: 40px;
}

.testimonials h2 {
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-media {
    list-style-type: none;
    margin-top: 10px;
}

.social-media li {
    display: inline;
    margin-right: 10px;
}

.social-media li a img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 200px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

.legal-links a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.search-container {
    text-align: center;
    margin-top: 20px;
}

#searchResults {
    margin-top: 20px;
}

.comment-box form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .comment-box form button:hover {
    background-color: #277e2a;
  }