body {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
}

.container {
    min-height: 78vh;
    place-content: center;
    padding: 50px 20px;
}

.inner-section {
    display: grid;
    padding: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 80px;
    align-items: center;
    margin: auto;
}

.image-box {
    place-content: center;
    overflow: hidden;
    border-radius: 20px;
    height: fit-content;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
}

.image-box img {
    width: 100%;
    scale: 1;
    transition: 0.5s;
}

.text-box {
    font-size: 20px;
    line-height: 30px;
    color: #151515;
    place-content: center;
}

h1 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    line-height: 52px;
}

footer {
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    color: #666;
    padding: 22px;
    background: #f5f5f5;
}

footer a {
    color: #666;
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    .container {
        height: fit-content;
    }

    .inner-section {
        grid-template-columns: repeat(1, 1fr);
        padding: 50px 0px;
    }

    h1 {
        font-size: 32px !important;
        line-height: 42px !important;
    }
}
/*@media screen and (max-width: 500px) {*/
/*    footer {*/
/*    text-align: left !important;*/
/*}*/
/*}*/

@media (max-width: 1200px) {
    .container {
    min-height: 74.5vh;
    max-width: 1140px;
  }
    .inner-section {
        display: grid;
        padding: 0px;
        gap: 0px 60px;
    }

    .text-box {
        font-size: 18px;
        line-height: 26px;
    }

    h1 {
        font-size: 36px;
        line-height: 45px;
    }
/*    footer {*/
/*    text-align: right;*/
/*    padding: 20px 20px;*/

/*}*/
}