 /* Hero Section */
 .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('Farm-land-for-sale.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    margin-top: 86px;
    font-size: 3rem;
    font-weight: bold;
}
.hero p {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* Section Styling */
.section {
    padding: 50px 0;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.section p {
    font-size: 1rem;
    color: #555;
}
.section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}