{% require_css %}
<style>
  /* Import Font */
  @import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');

  /* Section Layout */
  .testimonial-section {
    padding: 100px 20px;
    background-color: #333E86; /* Default Deep Blue */
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    text-align: center;
  }

  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* Quote Styling */
  .testimonial-quote {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 700px;
    color:#fff;
    text-align:center;
  }
  
  .testimonial-quote p {
    margin: 0;
  }

  /* Author Section */
  .testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* Avatar Image */
  .author-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #ccc; /* Placeholder color if image fails */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle border ring */
  }

  /* Author Text */
  .author-details {
    text-align: center;
  }

  .author-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #ffffff;
  }

  .author-role {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .testimonial-section {
      padding: 60px 20px;
    }
    
    .testimonial-quote {
      font-size: 20px;
    }
  }
</style>
{% end_require_css %}