/* 헤더 스타일 */
h1 {
    font-size: 4rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 100px;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
}

h3 {
    font-weight: bold;
}

/* 텍스트 스타일 */
p {
    font-size: 1.1rem;
}

/* 단어 스타일 */
.word-keek {
    word-break: keep-all;
}

/* 리스트 아이템 스타일 */
.guide-li {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.guide-li span {
    display: inline-block;
    padding-left: 26px;
}

/* 섹션 스타일 수정 */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
    margin-bottom: 100px; /* 섹션 간 간격 추가 */
    max-width: 1200px;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

/* h1 제목에 대한 애니메이션 스타일 추가 */
h1.animated-title {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

h1.animated-title.active {
    opacity: 1;
    transform: translateY(0);
}

.animated-title,
.animated-subtitle,
.animated-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

.active .animated-title,
.active .animated-subtitle,
.active .animated-content {
    opacity: 1;
    transform: translateY(0);
}

.animated-title {
    transition-delay: 0.2s;
}

.animated-subtitle {
    transition-delay: 0.4s;
}

.animated-content {
    transition-delay: 0.6s;
}

/* CTA 버튼 스타일 */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ee2a7b, #8dc63f);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    margin: 20px 10px;
    opacity: 0;
    transform: translateY(30px);
}

.active .cta-button {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s 0.8s, transform 1s 0.8s, background 0.3s;
}

.cta-button:hover {
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(238, 42, 123, 0.4);
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .guide-li {
        font-size: 1rem;
    }
}