* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color:#878E9C;
}

.container {
    width: 80%;
    margin: auto;
    text-align: center;
    padding: 40px 0;
}

/* Hero Section */
.hero {
    background: url('https://source.unsplash.com/1600x700/?house,home') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;  
}

.hero p {
    margin: 10px 0;
    font-size: 1.2rem;
   ;
}

.btn {
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 1rem;
}

/* Benefits Section */
.benefits h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.benefit {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.benefit h3 {
    color: green;
}

/* Eligibility Section */
.eligibility h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#eligibilityResult {
    font-weight: bold;
    margin-top: 15px;
    color: green;
}