body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f9f9f9;
  margin-top: 100px;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}

h2 {
  font-size: 24px;
  margin-top: 100px;
  font-weight: bold;
}

label {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

button {
  padding: 10px 15px;
  font-size: 18px;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 25px;
  cursor: pointer;
}

#generateBtn {
  background-color: #007bff;
}

#generateBtn:hover {
  background-color: #0056b3;
}

#copyBtn {
  background-color: #28a745;
}

#copyBtn:hover {
  background-color: #1e7e34;
}

#resetBtn {
  background-color: #dc3545;
}

#resetBtn:hover {
  background-color: #c82333;
}

pre {
  background: #f8f9fa;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 18px;
}

.faq-section {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background-color: #0073aa;
  color: #fff;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
}

.faq-question:hover {
  background-color: #005f8b;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 15px 20px;
  background-color: #fff;
  color: #555;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.faq-answer a {
  color: #0073aa;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
}
