:root {
  --vmedd-green: #008a69;
  --bg-light: #f7f9fb;
  --bg-white: #ffffff;
  --text-dark: #222;
  --text-muted: #666;
  --border-color: #e0e0e0;
}

.vmedd-faq {
  all:unset;
  width: 100%;
}

.vmedd-faq body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.vmedd-faq header {
  background-color: var(--bg-light);
  padding: 3rem 1rem 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.vmedd-faq header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--vmedd-green);
}

.vmedd-faq header p {
  margin: 0.5rem 0 2rem;
  color: var(--text-muted);
}

.vmedd-faq header input[type="text"] {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
}

.vmedd-faq header input[type="text"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(100, 192, 0, 0.2);
}

.vmedd-faq .container {
  max-width: 900px !important;
  margin: 0 !important;
  padding: 0 1rem;
}
.container {
  max-width: 900px !important;
  margin: 0 !important;
}

.vmedd-faq .faq-category {
  background: var(--bg-white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.vmedd-faq .faq-category h2 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.vmedd-faq .faq-item {
  padding: 0.25em 0;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vmedd-faq .faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.vmedd-faq .faq-answer {
  display: none;
  margin: 0.5em 0;
  padding-left: 1em;
  border-left: 3px solid #ccc;
  color: var(--text-muted);
  font-size: 0.9em;
}

.vmedd-faq .faq-question {
  display: block !important;
  width: 100% !important;
  text-align: left !important;
  background: none !important;
  border: none !important;
  font-size: 1em !important;
  cursor: pointer !important;
  padding: 0.5em 0 !important;
  color: var(--text-dark) !important;
  font-weight: 400;
  font-family: inherit;
}

.vmedd-faq .faq-question:focus {
  box-shadow: 2px solid var(--border-color);
  border-radius: 4px;
}

.vmedd-faq .faq-item:hover {
  background-color: #f0f5eb;
}

.vmedd-faq .faq-item:last-child {
  border-bottom: none;
}

@media (max-width: 600px) {
  .vmedd-faq header h1 {
    font-size: 1.5rem;
  }
  .vmedd-faq header input[type="text"] {
    width: 90%;
  }
}
