body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

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

header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #e74c3c;
}

nav {
    margin-top: 20px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #e74c3c;
}

.hero {
    background: url('hero-image.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ffffff;
}

.feature-section {
    padding: 80px 0;
}

.feature-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #333;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.2em;
    color: #e74c3c;
}

.contact-section {
    background-color: #ffffff;
    color: #333;
    padding: 100px 0;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #c0392b;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
