.faq-section {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: auto;
}
.faq-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-item h3 {
  font-size: 20px;
  margin: 0;
  color: #2a2a2a;
  cursor: pointer;
  position: relative;
}
.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #888;
}
.faq-item.open h3::after {
  content: "-";
}
.faq-item p {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}
.faq-item.open p {
  display: block;
}
.cta-section {
  text-align: center;
  margin: 25px 0;
}

.cta-button {
  background-color: #ff1616; /* Bright red for high contrast */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ff1616; /* Darker red on hover */
  color: #fff;
}
.author-bio-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.author-bio-img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.author-bio-img img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
  margin: 0 auto;
}

.author-bio-content {
  flex: 1;
}

.author-bio-name {
  font-size: none;
  font-weight: bold;
  margin: 0 0 5px;
  color: #333;
}

.author-bio-title {
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin: 0 0 10px;
}

.author-bio-text {
  font-size:  none;
  line-height: 1.5;
  color: #444;
  margin: 0 0 12px;
}

.author-bio-link {
  display: inline-block;
  padding: 7px 14px;
  background: #ff1616;
  color: #fff;
  text-decoration: none;
  font-size: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.author-bio-link:hover {
  background: #ff1616;
  color: #fff;
}

@media (max-width: 600px) {
  .author-bio-box {
    flex-direction: column;
    text-align: center;
  }
  .author-bio-img img {
    margin: 0 auto 15px;
  }
}