body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
  }
  
  /* About Us Section */
  .about-us {
    padding: 60px 40px;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  
  .about-text .bold {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .about-text p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .about-text button {
    padding: 10px 20px;
    background-color: rgba(21, 10, 230, 0.884);
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
    text-align: center;
  }
  
  .stats div {
    flex: 1;
    min-width: 150px;
    margin: 10px 0;
  }
  
  .stats span {
    font-size: 24px;
    font-weight: bold;
    color: rgba(21, 10, 230, 0.884);
  }
  
  /* Directors Section */
  .directors {
    padding: 60px 40px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .directors h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  
  .director-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .director-card {
    width: 250px;
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .director-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .director-card h3 {
    margin: 10px 0 5px;
  }
  
  .director-card p {
    color: #666;
  }
  
  .industry-leader-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background-color: white;
  }
  
  .left-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  
  .left-text h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
    font-weight: normal;
  }
  
  .left-text .highlight {
    color: red;
    font-weight: bold;
    font-style: italic;
  }
  
  .quote-box {
    position: relative;
    background-color: #eee;
    padding: 20px;
    border-left: 5px solid #ccc;
    border-right: 5px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
  }
  
  .quote-box .quote-icon {
    font-size: 30px;
    color: #b6a865;
    position: absolute;
    top: -15px;
    left: -15px;
  }
  
  .quote-box .quote-icon.right {
    position: absolute;
    bottom: -15px;
    right: -15px;
  }
  
  .right-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
  }
  
  .right-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .right-image .logo {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 100px;
  }