.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: 15px 10px;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    background-color: #eb4d05
; /* Moore's navy */
    color: #ffffff; /* Moore's gold */
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  
}

.cta-button:hover {
    background-color:#eb4d05;
    color: #ffffff;
    transform: scale(1.05);
}
.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: #eb4d05;
  color: #fff;
  text-decoration: none;
  font-size: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

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

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