body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.container {
    padding: 20px;
}

.hero {
    background-color: #e9ecef;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.product {
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.product img {
    max-width: 100%;
    height: auto;
}

.product h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.product p {
    margin-bottom: 10px;
}

.product .price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #007bff;
}

.product .btn {
    margin-top: 10px;
}