* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      background: #f9f9f9;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    #director-title {
      text-align: center;
      font-size: 28px;
      margin: 40px 0 30px;
      color: #2c3e50;
    }
    
    .director-testimonials {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      padding: 0 20px;
      max-width: 1400px;
      margin: auto;
    }
    
    .director-card {
      background-color: #ffffff;
      width: 100%;
      max-width: 500px;  /* Increased width */
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease;
    }
    
    .director-card:hover {
      transform: translateY(-5px);
    }
    
    .director-card img {
      width: 110px;
      height: 110px;
      border-radius: 999px;
      object-fit: cover;
      margin-bottom: 20px;
      border: 4px solid #3498db;
    }
    
    .director-quote {
      font-size: 16px;
      color: #444;
      font-style: italic;
      margin-bottom: 15px;
      line-height: 1.8;
    }
    
    .director-name {
      font-size: 17px;
      color: #2980b9;
      font-weight: bold;
    }
    