.comi_section {
      padding: 60px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .comi_grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 1200px;
      width: 100%;
    }

    .comi_card {
      background: white;
      border-radius: 20px;
      padding: 40px 30px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .comi_card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 8px;
      height: 100%;
      background: linear-gradient(to bottom, #43e97b, #38f9d7);
      border-radius: 8px 0 0 8px;
    }

      .comi_card.color2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 8px;
      height: 100%;
      background: linear-gradient(to bottom, #56ab2f, #a8e063);
      border-radius: 8px 0 0 8px;
    }

    .comi_card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 28px rgba(0,0,0,0.2);
    }

    .comi_title {
      font-size: 1.5rem;
      color: #444;
      margin-bottom: 2px;
    }

    .comi_number {
      font-size: 4.5rem;
      font-weight: bold;
      color: #285c30;
    }

    @media (max-width: 768px) {
      .comi_grid {
        grid-template-columns: 1fr;
      }
      .comi_card {
        text-align: center;
      }
    }