/* css/help.css */

/*────────────────── INDEX BASE STYLES ──────────────────*/
body {
  font-family: Arial, sans-serif;
  margin: 2rem;
  background-color: #f9f9f9;
}
.help-main {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.logo img {
  max-width: 240px;
  height: auto;
}
.collapse-container {
  max-width: 600px;
  margin: 1rem auto;
}
.collapse-header {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.collapse-header h2 {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.collapse-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.collapse-content {
  background: white;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-top: -1px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.collapse-content.open {
  max-height: 200px;
}
.collapse-content ul {
  list-style: none;
  padding: 0.5rem 1rem;
  margin: 0;
}
.collapse-content li {
  margin: 0.5rem 0;
}
.collapse-content a {
  color: #007BFF;
  text-decoration: none;
  font-size: 0.95rem;
}
.collapse-content a:hover {
  text-decoration: underline;
}

.section-header {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.description {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  text-align: left;
}
form, .task {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 1rem auto;
  box-sizing: border-box;
  position: relative;
}
label.required::after {
  content: " *";
  color: red;
}
input, textarea, button {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
button {
  cursor: pointer;
  background-color: #007BFF;
  color: white;
  border: none;
  transition: background-color 0.2s ease;
}
button:hover {
  background-color: #0056b3;
}
.note {
  font-size: 0.9rem;
  text-align: left;
  color: #a00;
  margin-top: 0.5rem;
}
.footer {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 2rem;
  color: #888;
}
.footer a {
  color: #888;
  text-decoration: none;
}
a {
  color: #007BFF;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.captcha-row input {
  width: 60px;
  text-align: center;
}
.error-msg {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
ul.custom-list {
  list-style: disc inside;
  margin: 0.5rem 0 1rem 0;
  padding-left: 1rem;
}
