.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('https://example.com/hero-image.jpg') no-repeat center center/cover;
    color: white;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover {
    background-color: #0056b3;
}
.section {
    padding: 40px 20px;
    text-align: center;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.card {
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}
.faq {
    text-align: left;
    margin: 20px auto;
    max-width: 800px;
}
.faq h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.order-form {
    background: #f9f9f9;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
}
.order-form label {
    display: block;
    margin: 10px 0 5px;
}
.order-form input,
.order-form select,
.order-form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.order-form button {
    background: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}
.order-form button:hover {
    background: #0056b3;
}