.about-banner {
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .about-banner {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-banner {
        height: 200px;
    }
}


/* start paragraph section */
.content-section {
    background-color: #fff;
}

/* .shadows-into-light-regular {
    font-family: "Shadows Into Light", serif;
    font-weight: 400;
    font-style: normal;
  } */
.content-block h2 {
    color: green;
    font-size: 28px;
    font-weight: 600;
    font-family: "Oswald", serif;
    margin-bottom: 20px;
}
.content-block h4 {
    color: rgb(6, 6, 6);
    font-size: 28px;
    font-weight: 600;
    font-family: "Oswald", serif;
    margin-bottom: 20px;
}

.content-block p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.content-block {
    /* padding: 30px; */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.content-block:hover {
    background-color: #f8f9fa;
}


/* end paragraph section */