
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
    text-align: center;
}

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x900/?rolling-paper') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
}

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

.btn {
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.btn:hover {
    background: #e68900;
}

/* Sections */
section {
    padding: 40px 20px;
}

h2 {
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Product Grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-item {
    background: white;
    margin: 10px auto;
    padding: 15px;
    width: 80%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 10px;
}