body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: white;
    }
    .header-bar {
      background-color: #4caf50;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
    }

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    margin-top:50px;
    padding: 40px 20px;
}
    .section {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }
    .left, .right {
      box-sizing: border-box;
    }
    .left {
      flex: 3;
      position: relative;
    }
    .right {
      flex: 2;
    }
    h2 {
      font-size: 32px;
      font-weight: bold;
      color: #333;
      margin-bottom: 24px;
    }
    h3 {
      font-size: 24px;
      font-weight: bold;
      color: #4caf50;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
    }
    .accent-bar {
      width: 8px;
      background-color: #4caf50;
      height: 80%;
      position: absolute;
      left: 0;
      top: 10%;
      border-radius: 0 4px 4px 0;
    }
    .comparison-box, .highlight-box, .quote-box, .benefit-card, .instructor-card, .card-box {
      border-radius: 8px;
      padding: 16px;
      background-color: #f9f9f9;
      margin-bottom: 20px;
    }
    .comparison-box {
      border-left: 4px solid #4caf50;
      background-color: #f5f5f5;
    }
    .quote-box {
      position: relative;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    .quote-box:before {
      content: "\201C";
      font-size: 48px;
      color: #4caf50;
      position: absolute;
      top: -20px;
      left: 20px;
      opacity: 0.2;
    }
    .benefit-list, .feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .benefit-card, .instructor-card {
      flex: 1 1 45%;
      background-color: rgba(76, 175, 80, 0.05);
      border: 1px solid rgba(76, 175, 80, 0.3);
    }
    .instructor-card {
      text-align: center;
      transition: transform 0.3s ease;
      border: 2px solid transparent;
    }
    .instructor-card:hover {
      transform: translateY(-5px);
      border-color: #4caf50;
    }
    .icon-large {
      font-size: 100px;
      color: #4caf50;
      opacity: 0.8;
    }
    .card-box {
      border: 1px solid #ddd;
      text-align: center;
    }
    .badge {
      display: inline-block;
      padding: 8px 16px;
      background-color: #4caf50;
      color: white;
      font-weight: bold;
      border-radius: 20px;
      margin: 10px auto;
    }
    ul {
      padding-left: 20px;
    }
    @media (max-width: 768px) {
        .section {
            flex-direction: column;
        }

        .benefit-card, .instructor-card {
            flex: 1 1 100%;
        }
    }