body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f9f9f9;
    color: #333;
}
h1 , h2, h3 {
    margin: 10px 0;
}
footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 10px;
}
.hero {
    height: 400px;
    background-image: url(/images/header.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255, 125, 244);
    text-align: center;
}
.features {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}
.card {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 200px;
}
.card img {
    width: 100%;
    border-radius: 8px;
}

.contact {
    margin: 40px auto;
    max-width: 400px;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.contact button {
    background: teal;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}