/* 기본 스타일 */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f5f9f8;
  color: #333;
}

/* 헤더 */
header {
  background-color: #4CAF50;
  color: white;
  padding: 15px 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* 워크플로우 관리 버튼 */
.workflow-btn {
  background-color: #FF9800 !important;
  padding: 8px 15px !important;
  border-radius: 5px !important;
  margin-left: 20px !important;
  font-weight: bold !important;
  transition: background-color 0.3s ease;
}

.workflow-btn:hover {
  background-color: #F57C00 !important;
  text-decoration: none !important;
}

/* 섹션 제목 */
h2 {
  color: #2e7d32;
  border-bottom: 2px solid #a5d6a7;
  padding-bottom: 5px;
}

section {
  margin-top: 30px;
}

/* 리스트 */
ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* 문의하기 폼 */
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form button {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #45a049;
}

/* 푸터 */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
