body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 1em 0;
    text-align: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

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

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    background-color: #e0f2f7;
    padding: 4em 2em;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}

.button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1em;
}

.button:hover {
    background-color: #0056b3;
}

.featured-products, .services, .content-page {
    padding: 2em;
    max-width: 960px;
    margin: 20px auto;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.featured-products h2, .services h2, .content-page h1, .contact-info h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #333;
}

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

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-card h3 {
    margin-top: 0;
    margin-bottom: 5px;
}

.product-card .price {
    display: block;
    font-weight: bold;
    color: #5cb85c;
    margin-bottom: 10px;
}

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

.services ul li {
    padding: 0.5em 0;
    border-bottom: 1px solid #eee;
}

.services ul li:last-child {
    border-bottom: none;
}

.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

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

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
}

.contact-info p {
    margin-bottom: 0.5em;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: static;
    bottom: 0;
    width: 100%;
}

.hidden {
    display: none;
}

iframe {
    width: 100%;
}