/* Trust Section */
.trust-section {
  padding: 4rem 0;
  background: #f9fafc;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.trust-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.trust-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Process Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 3rem;
}
.timeline:before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-color);
  z-index: 1;
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 23%;
}
.step-number {
  width: 50px;
  height: 50px;
  background: white;
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 1rem;
}

/* Emergency Banner */
.emergency-banner {
  background: #fff8e6;
  border-left: 5px solid #ffc107;
  padding: 1rem;
  margin: 2rem 0;
}
.emergency-banner i {
  color: #ffc107;
  margin-right: 10px;
}

/* Appointment Info Cards */
.appointment-info-section {
  padding: 4rem 0;
  background: #fff;
}
.appointment-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.info-card {
  text-align: center;
  padding: 2rem;
  background: #f9fafc;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.info-card .info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.info-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.info-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* FAQ Accordion */
 /* Accordion Styles */
  .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .accordion-header {
    width: 100%;
    color:#2a7fba;
    padding: 1.5rem;
    text-align: left;
    background: #f9f9f9;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .accordion-header i {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .accordion-header i {
    transform: rotate(180deg);
  }
  
  .accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
  }
  
  .accordion-item:hover {
    border-color: var(--primary-color);
  }
  
  .accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(74, 111, 165, 0.1);
  }