    .exovik_exovik_exooo_section {
      display: flex;
      gap: 15px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .exovik_exovik_exooo_box {
      flex: 1;
      min-width: 280px;
      background: linear-gradient(135deg, #b95ce4 0%, #6f28c5 100%);
      color: white;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 220px;
    }

    .exovik_exovik_exooo_text {
      max-width: 50%;
    }

    .exovik_exovik_exooo_text h3 {
      font-size: 16px;
      font-weight: normal;
      margin-bottom: 5px;
    }

    .exovik_exovik_exooo_text h2 {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .exovik_exovik_exooo_text p {
      font-size: 15px;
    }

    .exovik_exovik_exooo_image img {
      max-width: 160px;
      border-radius: 8px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .exovik_exovik_exooo_box {
        flex-direction: column;
        text-align: center;
        height: auto;
      }

      .exovik_exovik_exooo_text {
        max-width: 100%;
      }

      .exovik_exovik_exooo_image img {
        max-width: 120px;
        margin-top: 10px;
      }
    }