.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-button {
  display: inline-block;
  margin: 0 10px 10px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button.primary {
  background-color: #2e369d; /* Deep navy matching Wilde’s accent */
  color: #fff;            /* Gold/yellow to mirror Wilde’s logo */
}

.cta-button.primary:hover {
  background-color: #2e369d;
  transform: scale(1.05);
}

.cta-button.secondary {
  background-color:#2e369d; /* Gold/yellow accent */
  color: #fff;
}

.cta-button.secondary:hover {
  background-color: #2e369d;
  transform: scale(1.05);
}
.author-bio-box h2
{
  margin-top:0;
}
.author-bio-box {
  display: flex;
  align-items: self-start;
  gap: 12px;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex-direction:column;
}

.author-bio-img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 10px;
}

.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;
  margin: -25% 0 0 25%;
}

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

.author-bio-title {
  font-size: none;
  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: #2e369d;
  color: #fff;
  text-decoration: none;
  font-size: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

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

@media (max-width: 768px) {
  
  .author-bio-content {
    margin: 0
  }
  
}
