body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #222;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

header a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
}

.body-section {
    padding: 20px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    width: 220px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.contact {
    background: #f4f4f4;
    padding: 20px;
    text-align: center;
}

.contact input, .contact textarea {
    width: 80%;
    padding: 8px;
    margin: 5px;
}

button {
    padding: 10px;
    background: orange;
    border: none;
    color: white;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px;
}