/* General Setting */
.tc-bg {
    background-image: url('../images/term-condition/tc-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 100vh;
    display: flex;
}

button {
    background: transparent;
    border: none;
}

.title-wrapper {
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 50px auto;
    width: 100%;
    max-width: 1000px;
}

.blue-bg-wrapper {
    position: relative;
    width: 100%;
    max-width: 1500px;
}

.blue-bg-border {
    background-color: #184998;
    border-radius: 15px;
    position: absolute;
    top: -20px;
    left: 20px;
    right: 20px;
    bottom: -20px;
    z-index: 1;
    border: 5px solid #FFBB00;
}

.blue-bg-border-2 {
    background-color: #184998;
    border-radius: 15px;
    position: absolute;
    top: 0px;
    left: -5px;
    right: -5px;
    bottom: 0px;
    z-index: 1;
    border: 5px solid #FFBB00;
}

.blue-bg {
    background-color: #184998;
    border-radius: 0px;
    position: relative;
    padding: 40px;
    z-index: 2;
    color: #FFFFFF;
    text-align: center;
    width: calc(100% - 129px);
    margin: auto;
}

.blue-bg img.title {
    margin-bottom: 20px;
    width: auto;
    max-width: 100%;
}

.blue-bg .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.blue-bg .text .section {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.blue-bg .text h3 {
    font-size: 16px;
    text-align: left;
    margin: 0;
}

.blue-bg .text ul {
    padding: 10px;
    margin: 0;
}

.blue-bg .text ul li {
    font-size: 14px;
    text-align: justify;
    margin: 0;
}

.blue-bg .text .link {
    color: #FFFFFF;
    text-decoration: underline;
    cursor: pointer;
}

.blue-bg .text table {
    border-collapse: collapse;
    width: 100%;
}

.blue-bg .text th,
.blue-bg .text td {
    border: 1px solid #FFFFFF;
    padding: 8px;
    text-align: left;
    font-size: 14px;
}

@media (max-width: 800px) {
    .tc-bg {
        background-image: url('../images/term-condition/tc-bg.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        min-height: 100vh;
        display: flex;
    }

    .blue-bg {
        padding: 20px;
    }

    .blue-bg .text {
        display: flex;
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }

    .blue-bg .text h3 {
        font-size: 14px;
        text-align: left;
        margin: 0;
    }

    .blue-bg .text p,
    .blue-bg .text th,
    .blue-bg .text td,
    .blue-bg .text ul li {
        font-size: 12px;
        text-align: left;
        margin: 0;
    }

    .blue-bg {
        width: calc(100% - 89px);
    }
}

@media(max-width: 600px) {
    .blue-bg {
        width: calc(100% - 89px);
    }
}