/* Main styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: #333;
  background-color: #f9f9f9;
}

/* Headings */
h1 {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 10px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

h2 {
  color: #2c3e50;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 1px solid #bdc3c7;
  padding-bottom: 8px;
}

h3 {
  color: #34495e;
  font-size: 1.4em;
  margin-top: 25px;
  margin-bottom: 10px;
}

h4 {
  color: #2c3e50;
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Paragraphs and text */
p {
  margin: 15px 0;
  color: #444;
  text-align: justify;
}

.last-updated {
  color: #666;
  font-style: italic;
}

/* Lists */
ul {
  padding-left: 25px;
  margin: 15px 0;
}

li {
  margin: 10px 0;
  color: #444;
}

/* Links */
a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Strong elements */
strong {
  color: #2c3e50;
  font-weight: 600;
}

/* Support page specific styles */
section {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item {
  margin: 20px 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.9em;
  color: #666;
}

footer a {
  margin-left: 10px;
}

/* Copyright page specific styles */
.copyright-notice {
  font-size: 1.2em;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

/* Container for better mobile responsiveness */
@media (max-width: 840px) {
  body {
    padding: 15px;
    margin: 0 10px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.6em;
  }

  h3 {
    font-size: 1.3em;
  }
}
