body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    text-align: center;
    color: black;
}

.full-width {
    width: 100%;
    text-align: left;
        padding: 20px;


}
p {
    font-size: 1.2em;
    margin-bottom:20px;
}

h1 {
    font-size: 2.0em;
}

h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

ul li,
ol li {
    margin-left: 40px !important;
    font-size: 1.2em;
}

ul,
ol {
    margin-bottom: 10px !important;
}

ul li ol {
    font-size: .8em;
}

table {
        margin-bottom:20px;

}

.section-divider {
    width: 100%; /* Makes the line 70% of the container width */
    height: 1px; /* Thickness of the divider */
    background-color: lightslategray; /* Color of the divider */
    margin: 20px auto; /* Centers it horizontally */
    border-radius: 2px; /* Optional: Softens the edges */
}

/* Main content container */
.content-container {
    display: flex;
    justify-content: space-between; /* Ensures equal spacing */
    align-items: center;
    gap: 20px; /* Adjust spacing between elements */

}
.content-container-full {
    width: 100%;
    padding: 1em;
    text-align: left !important; /* Forces it to override inherited centering */
}

.image-text-container {
    display: flex;
    justify-content: space-between; /* Ensures equal spacing */
    align-items: center;
    gap: 20px; /* Adjust spacing between elements */
}

/* Text box styling */
.text-box {
    width: 50%; /* Makes text take up half of the container */
    background: white;
    padding: 20px;
    text-align: left;
}

/* Left text box - takes up 70% */
.text-box-left {
    width: 70%; /* Adjusted width */
    background: white;
    padding: 20px;
    text-align: left;
}

/* Image box - takes up 30% */
.image-box {
    width: 30%; /* Adjusted width */
    display: flex;
    justify-content: flex-end; /* Moves content (image) to the right */
    align-items: center;
}

/* Image styling */
.image-box img {
     width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Video box styling */
.video-box {
    width: 50%; /* Makes video take up the other half */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

/* Ensures the video scales properly */
.video-box iframe {
    width: 100%; /* Ensures the video fills its container */
    height: auto;
    aspect-ratio: 16 / 9; /* Maintains proper aspect ratio */

}

/* Table container */
.table-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px;
}

/* Table box */
.table-box {
    width: 100%;
    background: white;
    padding: 20px;
    text-align: left;
}



/* Paragraph styling */
.text-box p,
.text-box-left p {
    margin-bottom: 10px;
}

/* Table styling */
table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    border: 1px solid #ddd;
}

/* Icons */
td .tick {
    color: green;
    font-weight: bold;
}

td .cross {
    color: red;
    font-weight: bold;
}

p .tick {
    color: green;
    font-weight: bold;
}

p .cross {
    color: red;
    font-weight: bold;
}
  @media (max-width: 768px) {
    .content-container,
    .image-text-container {
        flex-direction: column;
        align-items: center;
    }

    .text-box,
    .video-box,
    .image-box,
    .text-box-left {
        width: 100%;
    }

    .image-box {
        justify-content: center; /* Center the image */
        align-items: center;
    }

    .image-box img {
        width: 100vw; /* Full width of the screen */
        max-width: 375px; /* Cap it to prevent too large on wider phones */
        height: 100vw; /* Square shape */
        max-height: 375px;
        object-fit: cover;
        object-position: center;
    }

    ul li,
ol li {
    margin-left: 20px !important; /* Reduced from 40px */
}
}


        /* Desktop Margin Adjustment */
        @media (min-width: 1600px) {
            .page-content {
                margin-left: 10%;
                margin-right: 10%;
            }

        }

        /* Laptop and Tablet Margin Adjustment */
        @media (min-width: 768px) and (max-width: 1599px) {
            .page-content {
                margin-left: 2.5%;
                margin-right: 2.5%;
            }
        }

        @media (max-width: 480px) {
            .page-content {
                margin-left: 0%;
                margin-right: 0%;
                            }

.section-divider {
    display: none;

} 
}
