body {
  font-family: Arial, sans-serif;
  background: #f0f8ff;
  color: #555555;
  margin: 0;
  padding: 20px;
  text-align: center;
}

nav {
  margin-bottom: 20px;
}

nav a {
  margin: 0 12px;
  font-weight: bold;
  color: #1a73e8;
  text-decoration: none;
}

nav a:hover {
  color: #d35400;
  text-decoration: underline;
}

h1 {
  color: #1a3e70;
  font-size: 36px;
}

h2 {
  color: #1a3e70;
  margin-top: 30px;
}

p {
  max-width: 800px;
  margin: 10px auto;
  font-size: 18px;
  line-height: 1.7;
}

ul {
  text-align: left;
  display: inline-block;
}

ul li::marker {
  color: #1a73e8;
}

strong {
  color: #d35400;
}

.button, a.button, button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #1a73e8;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.button:hover, a.button:hover, button:hover {
  background: #155bb5;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin: 20px auto;
  max-width: 600px;
}

footer {
  margin-top: 50px;
  font-size: 14px;
  color: #888;
}

/* People Also Ask Section */
section h2 {
  font-size: 24px; /* matches your h2 style, slightly bigger */
  margin-bottom: 15px;
  color: #1a3e70; /* same as your h2 */
}

.faq-item {
  margin-bottom: 15px;
  padding: 12px 15px;
  border-left: 4px solid #1a73e8; /* matches your link color */
  background-color: #ffffff; /* white box to match cards */
  border-radius: 6px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left; /* align text left inside the box */
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1a3e70; /* matches h2/h1 color palette */
}

.faq-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555555; /* matches your paragraph color */
}
