.main-content {
    display: block;
    padding: 80px;
    color: #555;
    h1 {
        font-size: 250%;
    }
    h1, h2, h3, h4 {
        margin-bottom: 20px;
    }
    p, img {
        margin-bottom: 1rem;
    }
    ul, li {
        margin-bottom: 0.5rem;
        margin-left: 1em;
        list-style-type: disc;    
    }
}


.page-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1D1E20;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.page-hero-overlay {
    color: #fff;
    z-index: 3;
    position: absolute;
    bottom: 40px;
    left: 60px;
    padding: 10px;
}

.page-hero-text-box {
    h1 {
        font-size: 250%;
        font-weight: 600;
        margin: 0;
    }
}

.inner-page-images {
  display: flex;
  gap: 15px;
}

.inner-page-images img {
  width: 49%;
  height: 300px;
  object-fit: cover;
}
