
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.left-column, .right-column {
    flex: 1;
    max-width: 48%; /* Adjust for spacing */
}

.left-column h2 {
    text-align: center;
    background-color: #333;
    color: white;
}

.left-column table {
    width: 100%;
    border-collapse: collapse;
    margin-top: -15px;
}

.left-column th, .left-column td {
    padding: 10px;
    text-align: left;
}

.left-column tr :first-child {
    /*background-color: #333;*/
    /*color: white;*/
}

.right-column img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.container img{
    border-radius: 10px;
}

.right-column h3 {
    color: red;
    margin-top: 20px;
}

.right-column ul {
    list-style-type: none;
    padding-left: 0;
}

.right-column li::before {
    content: "\2713"; /* Checkmark symbol */
    color: green;
    display: inline-block;
    width: 1em;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        max-width: 100%;
        margin-bottom: 20px;
    }
}