/* Philosophy Section - Only font-family changed */
.section-philosophy {
  padding: 8rem 0;
  position: relative;
}

.section-philosophy .section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #000;
  margin-bottom: 3rem;
  text-align: center;
}

.philosophy-quote {
  max-width: 720px;
  border-left: none;
  padding: 0;
  margin: 2rem auto 0;
  font-family: 'Poppins', sans-serif; /* Only this line changed */
}

.philosophy-quote p {
  font-family: 'Poppins', sans-serif; /* Only this line changed */
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin-bottom: 1.5rem;
}

.philosophy-quote footer {
  font-family: 'Poppins', sans-serif; /* Only this line changed */
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: #666;
  font-style: normal;
}

/* Responsive (unchanged) */
@media (max-width: 992px) {
  .philosophy-quote p {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .section-philosophy {
    padding: 6rem 0;
  }
  
  .philosophy-quote {
    padding: 0 20px;
  }
  
  .philosophy-quote p {
    font-size: 1.5rem;
  }
  
  .philosophy-quote footer {
    font-size: 1.1rem;
  }
}