.heroegg-section {
      background-image: url(Images/hero22.jpg);
    width: 100%;
    /* CHANGED: from 1500px to 100% */
    min-height: 80vh;
    /* CHANGED: from fixed height to min-height */
    background-repeat: no-repeat;
    background-size: cover;
    /* Ensures image covers the area */
    background-position: 2px;
    /* Centers the image */

    /* Use flex to center content */
    display: flex;
    align-items: center;
}
@media (min-width: 800px) {
    .card-container
     {
        grid-template-columns: repeat(3, 1fr);
    }
}