        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            width: 100vw;
        }
        .header {
            /* background-color: #0F172B;
            color: #fff; */
            padding: 20px;
            width: 100%;
            text-align: center;
            align-content: center;
            align-items: center;
            display: flex;
            flex-direction: column;
        }
        /* .container {
            padding-left: 15px;
            padding-right: 15px;
            margin-left: auto;
            margin-right: auto;
        } */
        .tc-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            /* margin-right: -15px;
            margin-left: -15px; */
            align-content: center;
            justify-content: center;
            column-gap: 10px;
            width: 100%;
        }
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
        .box {
            background-color: #0F172B;  /* Black box */
            border: 1px solid #0F172B;
            border-radius: 5px;
            padding: 0;
            text-align: center;
            min-height: 350px;
            display: flex;
            flex-direction: column;
        }
        .box-content {
            padding: 20px;
            flex-grow: 1;
            position: relative;
        }

        .box-content img {
            max-width: 100%;
        }

        .box-header {
            background-color: inherit;
            padding: 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 75px;
        }
        .white-text {
            color: #fff;
        }
        .footer {
            /* background-color: #0F172B;
            color: #fff; */
            padding: 20px;
            text-align: center;
            position: fixed;
            bottom: 0;
            width: 100%;
        }

        .footer p {
            margin: 0;
        }

        @media (max-width: 768px) {
            .col-md-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .header p {
                font-size: 12px;
            }

            .footer {
                padding: 10px;
            }
        }

        .warning-box {
            width: 95%;
            background-color: red;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .warning-box p {
            color: white;
        }

        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;

            background-color: rgba(255, 255, 255, .3);
            overflow: hidden;
        }

        .image-overlay li {
            text-align: left;
        }

        .text-border {
            background-color: white;
            padding: 5px;
            box-shadow: 0 0 15px white
        }