.section1 {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    margin:20px auto 0; 
}
.section1 .left{
    width:50%;
}
.section1 .left .banner{
    width: 100%;
}
.section1 .right{
    width:50%;
    padding: 30px;
    background-color: #f0f7fc;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.section1 .right h1{
    font-size: 24px;
    font-family: '7Bold' !important; 
    color: #0069d1;
    margin-bottom: 20px;
}
.section1 .right pre{
    font-size: 20px;
    line-height: 1.3;
}
.section2 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
}

.section2 a {
    position: relative; 
    width: calc(50% - 10px);
}

.section2 a .banner {
    width: 100%;
    height: auto; 
}

.section2 a span {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    color: white;
    padding: 10px;
    font-size: 24px;
    font-family: '6SemiBold' !important;
}
.section2 .btn_wrap {
    display: flex;
    gap: 20px;
}
h2 {
    font-size: 26px;
    font-family: '7Bold' !important; 
}
.banner_mo {
    display: none !important;
}
.pre_mo {
    display: none !important;
}
@media screen and (max-width: 767px) {
    .banner {
        display: none !important;
    }
    .banner_mo {
        display: flex !important;
        width: 100%;
    }
    .pre_pc {
        display: none !important;
    }
    .pre_mo {
        display: flex !important;
        width: 100%;
    }
    .section1 {
        gap: 15px;
        margin-top: 10px;
        width: 90%;
        margin: 10px auto 0;
        flex-direction: column;
    }
    .section1 .left {
        width: 100%;
    }
    .section1 .right {
        width: 100%;
        padding: 20px;
        border-radius: 10px;
    }
    .section1 .right h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .section1 .right pre {
        font-size: 17px;
        line-height: 1.3;
    }
    .section2 {
        gap: 15px;
        width: 90%;
        max-width: 100%;
        margin: 40px auto;
    }
    .section2 a {
        width: calc(50% - 8px);
    }
    .section2 a span {
        padding: 12px;
        font-size: 18px;
        width: 90%;
        text-align: center;
        line-height: 1.2;
    }
    .section2 .btn_wrap {
        gap: 15px;
    }
    h2 {
        font-size: 20px;
    }
}