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

/* Meet the Tutor Section */
#meet-the-tutor {
  background-color: #f9fafd;
  padding: 2rem 1rem;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Open Sans', sans-serif;
}

#meet-the-tutor h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1a2a6c; /* Navy blue */
}

#meet-the-tutor article {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

#meet-the-tutor img {
  flex: 0 0 180px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(26, 42, 108, 0.3);
}

#meet-the-tutor h3 {
  margin-top: 0;
  color: #1a2a6c;
  font-size: 1.5rem;
  flex-basis: 100%;
}

#meet-the-tutor p {
  flex: 1 1 300px;
  line-height: 1.5;
  color: #333;
  font-size: 1rem;
}

#meet-the-tutor a {
  color: #1a2a6c;
  text-decoration: none;
  font-weight: 600;
}

#meet-the-tutor a:hover,
#meet-the-tutor a:focus {
  text-decoration: underline;
  color: #4a6cf7; /* lighter blue accent */
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  #meet-the-tutor article {
    flex-direction: column;
    text-align: center;
  }
  #meet-the-tutor img {
    margin: 0 auto;
  }
  #meet-the-tutor p {
    flex-basis: 100%;
  }
}


  /* Hide native checkbox */
  .faq-item input[type="checkbox"] {
    display: none;
  }
  
  /* Style the label as the question button */
  .faq-item label {
    display: block;
    cursor: pointer;
    font-weight: bold;
    padding: 0.5em 1em;
    background-color: #e1e8f0;
    border-radius: 5px;
    margin-bottom: 0.3em;
    user-select: none;
    transition: background-color 0.3s;
  }
  
  .faq-item label:hover {
    background-color: #cbd6e2;
  }
  
  /* Style the answer */
  .faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1em;
    margin-bottom: 1em;
    background-color: #f7f9fc;
    border-left: 4px solid #3a7bd5;
    border-radius: 0 5px 5px 0;
  }
  
  /* When checkbox checked, show the answer */
  .faq-item input[type="checkbox"]:checked ~ .answer {
    max-height: 500px; /* enough height to show content */
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  
  /* Optional: Add an icon for expanded/collapsed */
  .faq-item label::after {
    content: "➕";
    float: right;
    transition: transform 0.3s;
  }
  
  .faq-item input[type="checkbox"]:checked + label::after {
    content: "➖";
  }

#inlineContact {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
}

#contactBtn {
  padding: 10px 20px; 
  font-size: 16px;
}

#contactBtnFooter {
  padding: 10px 20px; 
  font-size: 16px;
}