html,body{
    overflow-x: hidden;
}

body {
    padding: 0 130px;
}

.page-header {
    position: relative; /* Needed for absolute positioning of the pseudo-element */
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    padding-bottom: 200px;
    text-align: center;
    color: white;
    overflow: hidden; /* Ensures the pseudo-element does not overflow */
    /* font-weight: bold; */
    text-shadow: 
        -1px -1px 0 #07572a,  
         1px -1px 0 #07572a,  
        -1px  1px 0 #07572a,  
         1px  1px 0 #07572a;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 128, 0, 0.5); /* Green overlay with 50% opacity */
    z-index: 1; /* Ensure the overlay is above the background */
}
.page-header h1{
    font-family: Outfit;
    font-size: 70px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.page-header p{  
    font-family: Outfit;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.page-header h1,
.page-header p {
    position: relative; /* To ensure text is above the overlay */
    z-index: 2; /* Ensure the text is above the overlay */
}

.page-header img {
    filter: grayscale(100%); /* Make the image greyscale */
}

@media (max-width: 1200px) {
    .page-header {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    .page-header h1{
        font-size: 30px;
    }
    .page-header p{
        font-size: 15px;
    }

}

@media (max-width: 1200px) {
    body {
        padding: 0 100px;
    }

}

@media (max-width: 1000px) {
    body {
        padding: 0 0px;
    }
}
