 body {
      font-family: 'Open Sans', sans-serif;
      background-color: #f4f4f4;
    }
    .section-title {
      font-weight: 700;
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #007749;
      margin: 8px auto 0;
      border-radius: 2px;
    }
    .card {
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .badge {
      font-size: 0.85rem;
      padding: 0.6rem 0.9rem;
    }
    .btn-outline-primary {
      border-color: #007749;
      color: #007749;
    }
    .btn-outline-primary:hover {
      background-color: #007749;
      color: #fff;
    }
    .card-header {
      background: linear-gradient(90deg, #007749);
    }
    .card-header h5 {
      color: #fff;
      font-weight: 600;
    }