section .section-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 150px; /* nav 클릭 시 헤더 위치 조정 */
}
section .section-header * {
    font-family: var(--font-inter);
}
section .section-header h1 {
    font-family: var(--font-poppins);
    font-size: 40px;
    font-weight: 400;
}
section .section-header p {
    font-size: 18px;
    font-weight: 100;
}

section .section-body {
    margin: 50px 0;
}

section .section-footer {
    margin-top: 70px;
}

@media (max-width: 768px) {
    section .section-header h1 {
        font-size: 28px;
    }
    section .section-header p {
        font-size: 14px;
    }
}