/* 배경 이야기 섹션 스타일 */
.story {
    padding: 60px 0;
    background-color: #f9f9f9;
    color: #333;
}

.story h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #4169E1;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.story p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(20px); /* 아래에서 위로 페이드 인 효과 */
}

.story p.show {
    display: block;
    opacity: 1;
    transform: translateY(0); /* 원래 위치로 이동 */
}

.story-next {
    display: block;
    text-align: center;
    font-size: 16px;
    color: #4169E1;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-next:hover {
    color: #2E2E2E;
}

@media (max-width: 768px) {
    .story h2 {
        font-size: 28px;
    }

    .story p {
        font-size: 16px;
    }
}
