.sub-container {
    display: flex;
    flex-direction: column;
}

.sub-section {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.image-container {
    position: relative;
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 50%; /* Ensure the container takes the full width of the parent */
    height: 50%; /* Ensure the container takes the full height of the parent */
    border-radius: 15px; /* Rounded edges */
    overflow: hidden; /* Hide overflow */
}

.image-container img {
    display: block;
    max-width: 50%; /* Ensure the image doesn't overflow */
    max-height: 50%; /* Ensure the image doesn't overflow */
}

.sub-text {
    width: 50%;
}

.sub-text h2 {
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 900;
    color: #F68A5E;
}

.sub-text p {
    margin: 10px 0;
    line-height: 1.5;
}

.sub-text ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.sub-text ul li {
    margin: 5px 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.sub-text ul li i {
    margin-right: 10px;
}

/* Styling for FontAwesome pen bullets */
ul {
    /* list-style: none; */
    padding-left: 15px;
}

ul li {
    position: relative;
    /* padding-left: 25px; */
}

ul li i.fa-pencil {
    position: absolute;
    left: 0;
    top: 3px;
    color: #000;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    text-align: center;
    background-color: #f2f2f2;
}
th[colspan="2"] {
    text-align: center;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .sub-section {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .image-container, .sub-text {
        width: 100%;
        padding: 10px 0;
    }

    .sub-text {
        padding: 10px 0;
    }
}
