body {
margin: 0;
font-family: Arial, sans-serif;
background: #f7f7f7;
color: #222;
}


h1, h2 {
text-align: center;
}


.hero {
position: relative;
text-align: center;
color: white;
}


.hero-img {
width: 100%;
height: 300px;
object-fit: cover;
filter: brightness(0.7);
}


.hero h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2.5rem;
font-weight: bold;
}


.cta {
background: white;
padding: 40px 20px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin: 20px;
border-radius: 10px;
}


.signup-form {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
}


.signup-form input {
padding: 10px;
width: 250px;
border: 1px solid #ccc;
border-radius: 5px;
}


.signup-form button {
padding: 10px 20px;
background: #0c7c4f;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}


.signup-form button:hover {
background: #0a6942;
}


.gallery {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
padding: 20px;
}


.gallery img {
width: 100%;
border-radius: 10px;
object-fit: cover;