* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #1b5e20;
    color: #fff;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #ffeb3b;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef') center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
}

.hero button {
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    background: #ffeb3b;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

/* Sections */
.section {
    padding: 60px 50px;
    text-align: center;
}

.section.light {
    background: #f4f4f4;
}

.section h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card1 {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color:#1b5e20;
    color:white;
    border-radius:5px;
    font-weight:bold;
}



.property h3 {
    color: #1b5e20;
}

/* Contact */
form {
    max-width: 400px;
    margin: auto;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

form button {
    width: 100%;
    padding: 10px;
    background: #1b5e20;
    color: #fff;
    border: none;
    cursor: pointer;
}

 

/* Footer */
footer {
    background: #1b5e20;
    color: #fff;
    text-align: center;
    padding: 15px;
    float:left;
    width:100%;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        flex-direction: column;
    }
    nav {
        margin-top: 10px;
    }
    
    .hero h1 {
    margin-bottom:10%;
    font-size: 35px;
}
    
   
}
