.hero {
    background: url('residiential-construction.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero a {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #ffc107;
    color: black;
    font-weight: bold;
}
.section {
    padding: 60px 20px;
}
.section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.section .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}