body {
    margin:0;
    font-family:'Poppins', sans-serif;
    color:#333;
}

.hero {
    height:100vh;
    background:url('https://picsum.photos/1600/900?house') center/cover no-repeat;
    position:relative;
}

.overlay {
    background:rgba(0,0,0,0.5);
    color:white;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.btn {
    margin-top:20px;
    padding:12px 25px;
    background:#ff7a00;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

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

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

.card {
    width:300px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    border-radius:10px;
    overflow:hidden;
}

.card img {
    width:100%;
}

.gallery .grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:10px;
}

.gallery img {
    width:100%;
    border-radius:8px;
}

.cta {
    background:#111;
    color:white;
}

form {
    max-width:400px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

input, textarea {
    padding:10px;
    border:1px solid #ccc;
}

button {
    padding:12px;
    background:#111;
    color:white;
    border:none;
}

footer {
    background:#000;
    color:white;
    text-align:center;
    padding:20px;
}
