.container_content h1 {
    text-align: center;
    margin: 0;
    padding-top: 30px;
    line-height: 80px;
}

.container_content h2 {
    width: 800px;
    font-weight: normal;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    margin: 0 auto;
    padding-top: 28px;
    padding-bottom: 56px;
    line-height: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.container_content h2::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 3px;
    top: 0;
    left: 50%;
    margin-left: -20px;
    background-color: #ff3366;
}

.container_content .tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 30px;
    /* position: sticky;
    top:50px; */
    background-color: #fff;
    padding-bottom: 20px;
}

.tabs .tab {
    width: 240px;
    height: 160px;
    border-radius: 10px;
    margin: 0 20px;
    text-align: center;
    padding-top: 120px;
    box-sizing: border-box;
    cursor: pointer;
}

.tabs .tab:nth-child(1) {
    background-color: #f2f2f2;
    background-image: url("/public/template/default/assets/images/qa_tab1.svg");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: 64px 64px;
}

.tabs .tab:nth-child(2) {
    background-color: #f2f2f2;
    background-image: url("/public/template/default/assets/images/qa_tab2.svg");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: 64px 64px;
}

.tabs .tab:nth-child(3) {
    background-color: #f2f2f2;
    background-image: url("/public/template/default/assets/images/qa_tab3.svg");
    background-repeat: no-repeat;
    background-position: center 30%;
    background-size: 64px 64px;
}

.tabs .tab.active {
    color: #1a723d;
    background-color: rgba(26, 114, 61, 0.2);
}

.container_content .con_block {
    width: 800px;
    margin: 20px auto;
}

.container_content .con_block h3 {
    font-size: 20px;
    font-family: "Pretendard";
    font-weight: bold;
}

.container_content .con_block p {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    font-family: "Pretendard";
    /* text-indent:2em; */
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3498db;
}

.faq-question {
    padding: 20px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-icon {
    font-size: 1.2rem;
    width:20px;
    height:20px;
    background: url("/public/template/default/assets/images/angle-down.svg") no-repeat;
    background-size: 20px 20px;
    /* color: #3498db; */
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}