body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

nav a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #e44d26;
}

.hero {
    background-color: #f0f0f0;
    padding: 40px 0;
    text-align: center;
}

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

.hero img {
    display: block;
    margin: 10px auto;
     max-width: 100%;
    height: auto;
}

.content-section {
    padding: 40px 0;
}

.content-section h2 {
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid #e44d26;
    padding-bottom: 10px;
}
.content-section h3 {
    margin-bottom: 10px;
    margin-top: 30px;

}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section li {
    padding: 10px 0;
    border-bottom: 1px dotted #ddd;
}

.content-section a {
    text-decoration: none;
    color: #337ab7;
}

.content-section a:hover {
    text-decoration: underline;
}

footer {
  background-color: #f8f8f8;
  padding: 10px 0;
  border-top: 1px solid #eee;
    text-align: center;
    margin-top: 50px;
}

.product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            padding: 0;
            list-style: none;
            margin: 0;
        }

        .product-grid li {
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .product-grid li:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .product-grid a {
            text-decoration: none;
            color: #0073e6;
            font-weight: bold;
        }

        .product-grid a:hover {
            text-decoration: underline;
        }
