.support { padding: 100px 0;}
.support .tit {
    text-align: center;
    margin-bottom: 40px;
}

.support .tit h2{
    font-size: 42px;
    font-weight: 600;
    line-height: 48px;
    color: #000;
    text-transform: inherit;
}
.support .text {
    width: 70%;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.support .multicolumn{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.support .multicolumn__column{
    width: 48%;
    padding: 30px;
    height: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.support .multicolumn__column .h6{
    font-weight: 600;
    line-height: 48px;
    color: #000;
    text-transform: inherit;
}

.support .multicolumn__column .rte{
    margin-bottom: 10px;
    font-size: 12px;
}

.support .multicolumn__column .text-button{
    font-weight: 400;
    font-size: 14px;
}

@media screen and (max-width: 990px) {

    .support { padding-bottom: 30px;}

    .support .tit h2{
        font-size: 32px;
    }

    .support .text{ width: 100%;}

    .support .multicolumn__column{
        width: 100%;
        margin-bottom: 20px;
    }

    .support .multicolumn__column .h6{
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 10px;
    }
    
}


.security .tit{
    text-align: center;
    margin-bottom: 60px;
}

.security .tit h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: #000;
    text-transform: inherit;
}

.security-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.security-content .text {
    width: 48%;
}

.security-content .table {
    width: 48%;
}
.security-content .text {
    padding: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    
}

.security-content .text p {
    line-height: 1.8;
}

.security-content .text p img {
    margin: 20px 0;
}

.styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    border: 1px solid #ccc;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}
.styled-table .table-title-row {
    background-color: #febd17;
}

.styled-table tr:last-child td {
    border-bottom: none;
}
.styled-table th:last-child, .styled-table td:last-child {
    border-right: none;
}

@media screen and (max-width: 990px) {

    .security .tit h3{
        font-size: 24px;
        line-height: 36px;
    }

    .security-content .text {
        width: 100%;
        padding: 30px;
        margin-bottom: 40px;
    }

    .security-content .table {
        width: 100%;
    }
}


.report .tit{
    text-align: center;
    margin-bottom: 60px;
}
.report .tit h3{
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    color: #000;
    text-transform: inherit;
}

.report-content .text{
    width: 70%; 
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
}

.report-content .form{
    width: 60%; 
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ccc;
    background-color: #fff;
}

.report-content .form .t{
    font-size: 24px;
    text-transform: inherit;
    margin-bottom: 30px;
}

.report-content .form label{
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.report-content .form input{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.report-content .form select{
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.report-content .form textarea{
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
}

.report-content .form .content{
    margin: 0 0 15px;
}

.report-content .form button{
    width: 100%;
    padding: 10px 20px;
    border: none;
    background-color: #febd17;
    color: #000;
    cursor: pointer;
}

@media screen and (max-width: 990px) {
    .report-content .text{
        width: 100%;
    }
    .report-content .form{
        width: 100%;
    }
}