/* Troubleshooting and Help Section Styles */

.troubleshoot-box {
  background-color: rgba(242, 108, 79, 0.1);
  border: 2px solid var(--color-accent);
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
}

.troubleshoot-box h4 {
  color: var(--color-accent);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.troubleshoot-box strong {
  color: var(--color-accent);
}

.troubleshoot-box p {
  margin-bottom: 15px;
}

.troubleshoot-box ul {
  margin: 10px 0;
  padding-left: 25px;
}

.troubleshoot-box li {
  margin-bottom: 10px;
}

/* Code examples */
.code-example {
  background-color: #0d1b2a;
  color: #a0c4ff;
  padding: 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  overflow-x: auto;
  margin: 20px 0;
}

/* Section styling for resources pages */
.section {
  margin-bottom: 60px;
}

.section h2 {
  color: var(--color-accent);
  font-size: 2.5rem;
  margin-bottom: 30px;
  border-bottom: 3px solid var(--color-secondary);
  padding-bottom: 10px;
}

.section h3 {
  color: var(--color-secondary);
  font-size: 1.8rem;
  margin-top: 35px;
  margin-bottom: 20px;
}

.section p,
.section li {
  color: var(--color-light);
  font-size: 1.1rem;
  line-height: 1.8;
}
