* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Scrollable container */
.cardContainer {
    min-height: 100vh;
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Individual card */
.card {
    min-height: 100vh; /* Full-screen height */
    width: 100vw;
    max-width: 100%;
    background-color: #052A42;
    color: whitesmoke;
}

.cardGrid1 {

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "theImage theContent"
        "theImage theContent";
}
.cardGrid2 {

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "theContent theImage"
        "theContent theImage";
}

/* Left side (Image) */
.card .image {
    grid-area: theImage;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Right side (Text) */
.card .content {
    width: 100%;
    max-width: 100%;
    display: flex;
    grid-area: theContent;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    text-align: left; /* Align text to the left */
}

.card h1, h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: "Georgia", serif; /* Change to your preferred font */
}

.card p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: "Times New Roman", serif; /* Change to your preferred font */
}


/* Responsive styles */
@media (max-width: 1000px)  {
    .cardGrid1, .cardGrid2 {

        grid-template-columns: 1fr;
        grid-auto-rows: 1fr 1fr;
        grid-template-areas:
        "theContent"
        "theImage";
    }}

/* Responsive styles */
@media (max-width: 1000px)  {
    .card .image {

        min-height: 100%; /* Full-screen height */
        height: 100%; /* Full-screen height */
    }}
/* Responsive styles */
@media (max-width: 1000px)  {
    .cardGrid1 p, .cardGrid2 p{

        font-size: 2rem;
        text-align: center;
        padding-top: 1vh;

    }}/* Responsive styles */
@media (max-width: 1000px)  {
    .cardGrid1 h1, .cardGrid2 h1{

        font-size: 3.5rem;
        text-align: center;
        padding-top: 1vh;

    }}/* Responsive styles */
@media (max-width: 1000px)  {
    .cardGrid1 h2, .cardGrid2 h2{

        font-size: 3.5rem;
        text-align: center;
        padding-top: 1vh;

    }}/* Responsive styles */
@media (max-width: 1000px)  {
    .cardGrid1 h3, h4, h5, .cardGrid2 h3, h4, h5{

        font-size: 2.5rem;
        text-align: center;
        padding-top: 1vh;

    }}@media (max-width: 1000px)  {
    .cardGrid1 ul li, .cardGrid2 ul li{

        font-size: 1.5rem;
        text-align: center;
        font-weight: bold;

    }}