
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700&display=swap');

body {
    max-width: 640px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', 'Malgun Gothic', '맑은 고딕', sans-serif;
}

img {
    width: 100%;
}

/* 아코디언 스타일 */
.accordion-container {
    max-width: 640px;
    margin: 0 auto;
    background-color: #f5f3f2;
}

.accordion-section {
    background-color: #fff;
    overflow: hidden;
}

.accordion-header {
    background-color: white;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top : 1px solid #000000;
    height: 70px;
    font-size: 17px;
    font-weight: 700;
    padding: 0 30px 0 30px;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 30px 50px 30px 50px;
        font-size: 25px;
        font-weight: 700;
        height: 88px;
    }
}

.accordion-icon {
    width: 24px;
    height: 24px;
    background-image: url('/img/17/btn-down.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.3s ease;
}

.accordion-header.active .accordion-icon {
    background-image: url('/img/17/btn-up.png');
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: #f6f6f6;
}

.accordion-content.show {
    max-height: none;
    border-top: 1px solid #000000;
}

/* 보장 내용 아이템 */
.coverage-item {
    padding: 30px 30px 0;
}

.coverage-item:first-child {
    padding-top: 30px;
}

.coverage-item:last-child {
    padding-bottom: 30px;
}

.coverage-item:last-child {
    border-bottom: none;
}

@media (min-width: 768px) {
    .coverage-item {
        padding: 30px 50px 0;
    }

    .coverage-item:first-child {
        padding-top: 50px;
    }

    .coverage-item:last-child {
        padding-bottom: 50px;
    }

    .coverage-item:last-child {
        border-bottom: none;
    }
}

.coverage-item-header {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 10px;
}

.coverage-item-content {
    font-weight: 400;
    color: #6e757c;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 768px) {
    line-height: 28px;
}

.coverage-item-divider {
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.faq-padding {
    margin-bottom: 10px;
}

.faq-padding-2 {
    margin-bottom: 30px;
}

.list-depth {
    padding-left: 20px;
    text-indent: -20px;
}

.list-depth-1 {
    padding-left: 10px;
    text-indent: -10px;
}

.footer {
    padding: 30px 50px;
    font-weight: 400;
    color: #6e757c;
    background-color: #eaeaea;
    text-align: center;
    font-size: 11pt;
    border-top : 1px solid #000000;
}
