body {
    margin-top: 64px;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}

.content1 {
    padding: 50px 0 80px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}
.content1 .point2{
    display: inline-block;
    font-size: 18px;
    border-radius: 10px;
    color: #ff823d;
    font-weight: 500;
}
.title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    color: #ff823d;

}
.section_A .btn_wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
 }
 .section_A .btn_wrap a {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 40px;
    font-size: 20px;
}
.section_A .btn_wrap a img{
    margin-bottom: 30px;
}
.section_B .right{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.section_B .right a{
    padding: 100px;
    background-color: #fff;
    width: calc(50% - 25px);
    text-align: center;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_B .right a:nth-child(1) img{
    width: 40%;
}
.section_B .right a img{
    width: 60%;
}
.content1 .box  {
    margin-bottom: 20px;
    border: 1px solid #acacac;
    border-radius: 15px;
    padding: 20px;
    background: #fff;
}

.content1 .box .con {
    font-size: 18px;
    line-height: 1.5;
    color: #767676;
    font-weight: 300;
}
.content1 .box .bold{
    display: inline-block;
    font-size: 19px;
    border-radius: 10px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 15px ;
}

.content1 .point3 {
    font-size: 18px;
    color: #767676;

}
.qna:nth-of-type(1) .q{ 
    border-top: 2px solid #999999;
}

.qna .q{ 
    border-bottom: 2px solid #999999;
    font-size: 18px;
    padding: 2rem 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.3;
    padding-right: 3rem;
    position: relative;

}
.qna.on .q{ 
    border-bottom: none;

}
.qna .q::after{ 
    content: '';
    background-image: url('../img/arrow-2.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 1rem;
    top: 55%;
    transform: translateY(-50%);

}
.qna.on .q::after{ 
    background-image: url('../img/arrow-1.png');

}
.qna.on .a { 
    display: block;
    padding: 1.5rem;
    font-size: 18px;
    line-height: 1.5;
    color: #767676;
    font-weight: 300;
    border-top: 1px solid #d1d1d1;
    border-bottom: 2px solid #999999;
    
}
.qna .a { 
    display: none;
    line-height: 1.5;
}
.qna:nth-last-of-type(1) .a{ 
}
@media (min-width: 768px) and (max-width: 1200px) {
    .content1 {
        padding: 100px 0 80px;
        width: 90%;
    }
    .section_B .right {
        justify-content: center;
    }
    .section_B .right a {
        padding: 60px;
    }
    .section_B .right a:nth-child(1) img {
        width: 65%;
    }
    .section_B .right a img {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
  
    .content1 {
        width: 90%;
    }
    .section_A .btn_wrap {
        gap: 15px;
    }
    .section_A .btn_wrap a {
        width: calc(50% - 8px);
        padding: 15px;
        font-size: 16px;
        text-align: center;
        line-height: 1.3;
    }
    .section_A .btn_wrap a img {
        width: 60%;
        height: auto;
    }
    .section_B .right {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    .section_B .right a {
        padding: 25px;
        background-color: #fff;
        width: calc(50% - 8px);
        text-align: center;
        box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section_B .right a img {
        width: 100%;
    }
    .section_B .right a:nth-child(1) img {
        width: 70%;
    }
    .content1 .box .bold {
        font-size: 17px;
    }
    .content1 .box .con {
        font-size: 16px;
    }
    .content1 .point3 {
        font-size: 16px;
    }
    .content1 .point2 {
        font-size: 17px;
    }
    .qna.on .a {
        font-size: 16px;
    }
    .qna .q {
        font-size: 16px;
    }
}