/* 이벤트 페이지 전용 스타일 */
.event_page .event_accordion {
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    overflow: hidden;
}

.event_page .acc_header {
    background: #f8f8f8;
    /* 이미지의 연회색 배경 반영 */
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
}

.event_page .acc_header:hover {
    background: #f0f0f0;
}

.event_page .acc_header .arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    transform: rotate(135deg);
    /* 아래 방향 화살표 */
    transition: 0.3s;
}

.event_page .acc_header.active .arrow {
    transform: rotate(-45deg);
    /* 위 방향 화살표 */
    margin-top: 5px;
}

.event_page .acc_content {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
    display: none;
}

.event_page .img_wrap img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event_page .event_text_info {
    margin-top: 20px;
}

.event_page .notice_small {
    font-size: 14px;
    color: #888;
}

.event_page .tour_info_box {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
    background: #fdfdfd;
    padding: 20px;
    border-top: 1px dashed #ccc;
}

.event_page .dot_list li {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* 모바일 대응 */
@media screen and (max-width: 768px) {
    .event_page .acc_content {
        padding: 20px 10px;
    }
}