.section1{
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
}
.section1 .banner {
    width: 25%;
    margin-bottom: 30px;
}
h1 {
    font-size: 22px;
    font-family: 'KorailRoundGothicBold' !important; 
    margin-bottom: 40px;
    line-height: 1.3;
}
h1 span{
    font-size: 22px;
    font-family: 'KorailRoundGothicBold' !important; 
    color: #de1f26;
}
.section1 p {
    font-size: 18px;
    line-height: 1.3;
}
.section1 .btn1{
    width: 80%;
    margin: 0 auto;
    display: flex;
    background: linear-gradient(to right, #de1f26, #cd0741);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    font-size: 18px;
}
.section1 .btn_wrap{
    width: 80%;
    margin: 0 auto;
    display: flex;
    color: #de1f26;
    border-radius: 15px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.section1 .btn_wrap .btn2, .section1 .btn_wrap .btn3  {
    width: 50%;
    border: 1px solid #e290a0;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #de1f26;
    font-size: 18px;
}
.section2 {
    margin: 50px auto 0;
    text-align: center;
    background-color: #f7f8f9;
    padding: 50px 0;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}
.section2 .btn_wrap{
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
}
.section2 .btn_wrap a {
    width: calc(50% - 15px);
    display: flex;
    font-family: 'KorailRoundGothicBold' !important; 
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #e290a0;
    font-size: 18px;
    justify-content: space-between;
    height: 140px;
    background-size: 15% auto; /* 이미지 크기 조정 */
    background-repeat: no-repeat; /* 반복 방지 */
    background-position: calc(100% - 20px) calc(100% - 20px); /* 오른쪽 아래 위치 */
}

.section2 .btn1 {
    background-image: url('../img/btn-1.png');
}

.section2 .btn2 {
    background-image: url('../img/btn-2.png');
}

.section2 .btn3 {
    background-image: url('../img/btn-3.png');
}

.section2 .btn4 {
    background-image: url('../img/btn-4.png');
}

.section2 .section2 .btn_wrap a img{
    width: 8%;
}
@media screen and (max-width: 767px) {
    .section1 .banner {
        width: 60%;
    }
    .section1 {
        width: 90%;
        max-width: 100%;
        margin: 40px auto;
    }
    .section1 .btn1 {
        width: 100%;
        margin: 0 auto;
        display: flex;
        background: linear-gradient(to right, #de1f26, #cd0741);
        padding: 20px;
        border-radius: 15px;
        color: #fff;
        justify-content: space-between;
        align-items: center;
        margin-top: 50px;
        font-size: 18px;
    }
    .section1 .btn_wrap {
        width: 100%;
        border-radius: 15px;
        gap: 15px;
        margin-top: 20px;
    }
    .section1 .btn_wrap .btn2, .section1 .btn_wrap .btn3 {
        padding: 20px;
    }
    .section2 .btn_wrap {
        width: 90%;
        gap: 10px;
        max-width: 100%;
        margin-top: 30px;
    }
    .section2 .btn_wrap a {
        width: calc(50% - 5px);
        height: 130px;
        background-size: 25% auto;
        background-repeat: no-repeat;
        background-position: calc(100% - 15px) calc(100% - 15px);
    }
    .section2 .btn_wrap a img{
        width: 20%;
    }
    
}