
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("../images/imgBlogs/4KanalHousePlan/4 Kanal House Plans Background.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: #fff;
    padding: 15px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content hr {
    width: 80px;
    border: 2px solid #fff;
    margin: 20px auto;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
}

/* overlay */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 26px;
    }
    .hero-content p {
        font-size: 14px;
    }
}