/* ==== Content01 ==== */
.tab::before {
    background-color: #F9F9F9;
}

.cont1 {
    background-color: #F9F9F9;
}

.cont1 .support-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cont1 .card {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    border: 1px solid #D0D0D0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cont1 .card:hover {
    border-color: #004ECE;
    box-shadow: 0 8px 20px rgba(0, 78, 206, 0.15);
}

.cont1 .card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cont1 .card-header {
    display: flex;
    align-items: center;
    gap: 35px;
    border-bottom: 1px solid #D0D0D0;
    padding-bottom: 20px;
}

.cont1 .card-header .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(4, 100, 255, 0.06);
    border-radius: 300px;
}

.cont1 .card-header .icon img {
    width: 36px;
    height: auto;
}

.cont1 .card-title {
    font-size: var(--font-xl);
    font-weight: 500;
    transition: color 0.3s ease;
}

.cont1 .card:hover .card-title {
    color: #004ECE;
}

.cont1 .card-body {
    margin: 25px 0;
}

.cont1 .card-body .subtitle {
    margin-bottom: 7px;
    font-weight: 500;
    color: #666;
    font-size: var(--font-base);
}

.cont1 ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-md);
    font-weight: 500;
    line-height: 28px;
}

.cont1 ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #A0A0A0;
    border-radius: 9999px;
    display: inline-block;
}

.cont1 .btn-wrapper {
    margin-top: auto;
    text-align: right;
}

.cont1 .btn-wrapper .btn-type03 {
    padding: 9px 20px;
    font-size: var(--font-md);
    font-weight: 500;
}

@media (max-width:1280px) {
    .cont1 .support-list {
        gap: 24px;
    }

    .cont1 .card {
        padding: 32px 32px 32px 40px;
    }

    .cont1 .card-header {
        gap: 24px;
        padding-bottom: 32px;
    }

    .cont1 .card-header .icon {
        width: 80px;
        height: 80px;
    }

    .cont1 .card-header .icon img {
        width: 36px;
    }

    .cont1 .card-title {
        font-size: 24px;
        line-height: 36px;
    }
}

@media (max-width:1024px) {
    .cont1 .support-list {
        gap: 20px;
    }

    .cont1 .card {
        padding: 28px 28px 28px 36px;
    }

    .cont1 .card-header {
        gap: 20px;
        padding-bottom: 28px;
    }

    .cont1 .card-header .icon {
        width: 72px;
        height: 72px;
    }

    .cont1 .card-header .icon img {
        width: 32px;
    }

    .cont1 .card-title {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width:768px) {
    .tab {
        background-color: #F9F9F9;
    }
    
    .cont1 .support-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cont1 .card {
        padding: 24px;
    }

    .cont1 .card-header {
        gap: 16px;
        padding-bottom: 20px;
    }

    .cont1 .card-header .icon {
        width: 64px;
        height: 64px;
    }

    .cont1 .card-header .icon img {
        width: 28px;
    }

    .cont1 .card-title {
        font-size: 20px;
        line-height: 30px;
    }

    .cont1 .card-body {
        margin: 17px 0;
    }

    .cont1 .btn-wrapper .btn-type03 {
        padding: 8px 18px;
        font-size: var(--font-base);
        font-weight: 500;
    }
}

@media (max-width:480px) {
    .cont1 .card {
        padding: 20px;
    }

    .cont1 .card-header .icon {
        width: 56px;
        height: 56px;
    }

    .cont1 .card-header .icon img {
        width: 24px;
    }

    .cont1 .card-title {
        font-size: 18px;
        line-height: 26px;
    }

    .cont1 .card-title br {
        display: none;
    }

    .cont1 ul li {
        font-size: var(--font-base);
        line-height: 24px;
    }

    .cont1 .btn-wrapper {
        text-align: left;
    }
}